-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.06 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.06 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
{
"name": "api-2425",
"version": "1.0.0",
"description": "In dit vier weken durende vak zullen we de kracht van het web ervaren en kijken hoe we (mobiele) web apps kunnen maken die\nnet zo aantrekkelijk zijn als native mobiele apps.",
"type": "module",
"scripts": {
"clean": "rimraf dist && mkdir dist",
"start": "node server/server.js",
"predev": "npm run clean && npm run build",
"dev": "npm-run-all --parallel dev:*",
"dev:client": "chokidar 'client/**/*' -c 'npm run build:client'",
"dev:server": "nodemon server/server.js --ext js,liquid",
"prebuild": "npm run clean",
"build": "npm-run-all build:*",
"build:client": "vite build && cpy 'client/public/**/*' dist"
},
"license": "MIT",
"dependencies": {
"@tinyhttp/app": "^2.5.2",
"@tinyhttp/logger": "^2.1.0",
"chokidar-cli": "^3.0.0",
"cpy-cli": "^5.0.0",
"dotenv": "^16.4.7",
"liquidjs": "^10.21.0",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"sirv": "^3.0.1",
"vite": "^6.2.3"
},
"devDependencies": {
"rimraf": "^6.0.1"
}
}