-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1005 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 1005 Bytes
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
{
"name": "lti-example-tool",
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^5.0.4",
"tailwindcss": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.2",
"vite": "^7.1.7"
},
"scripts": {
"tailwind:build": "npx tailwindcss -i ./app.css -o priv/static/app.css",
"tailwind:watch": "npx tailwindcss -i ./app.css -o priv/static/app.css --watch",
"client:build": "vite build --config client/vite.config.ts",
"client:watch": "vite build --watch --config client/vite.config.ts",
"server:dev": "watchexec --stop-signal=SIGKILL -r -e gleam,erl,hrl -w src -w test -w gleam.toml -w manifest.toml gleam run",
"dev": "bash ./scripts/dev.sh",
"clean": "rm -rf build priv/static/**",
"build": "gleam build && npm run tailwind:build && npm run client:build"
}
}