-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "lti-13-example",
"private": false,
"version": "0.0.1",
"type": "module",
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"build": "vite build",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"start": "vite",
"test": "vitest --passWithNoTests"
},
"dependencies": {
"@babel/preset-env": "^7.22.10",
"@instructure/canvas-theme": "^10.11.0",
"@instructure/emotion": "^10.11.0",
"@instructure/ui": "^10.11.0",
"@oxctl/ui-lti": "^10.2.0",
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/preset-react": "^7.22.5",
"@oxctl/lti-auto-configuration": "^2.2.4",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@vitejs/plugin-react": "^4.3.4",
"vite": "^6.4.2",
"vite-plugin-mkcert": "^1.17.5",
"vitest": "^3.0.7"
}
}