-
-
Notifications
You must be signed in to change notification settings - Fork 219
/
Copy pathpackage.json
27 lines (27 loc) · 942 Bytes
/
package.json
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
{
"type": "module",
"devDependencies": {
"ava": "6.1.2",
"chai": "5.1.0",
"eslint": "8.57.0",
"eslint-config-google": "0.14.0",
"mocha": "10.4.0",
"puppeteer": "22.6.2",
"static-server": "2.2.1"
},
"private": true,
"scripts": {
"ava": "npx ava ./test/*.js",
"dev": "npm run dev-frontend | npm run dev-backend",
"dev-frontend": "npx http-server ./frontend/ -a=localhost --port=8080 -o /?backend=http://localhost:8081",
"dev-frontend-open": "npx http-server ./frontend/ -a=0.0.0.0 --port=8080 -o /?backend=http://localhost:8081",
"dev-backend": "npx cross-env PORT=8081 ACCESS_CONTROL=http://localhost:8080 npx nodemon ./server.js",
"dev-backend-open": "npx cross-env PORT=8081 ACCESS_CONTROL=* npx nodemon ./server.js",
"lint": "eslint --fix '.'",
"test": "npm run lint && npm run ava",
"vercel": "npx vercel dev"
},
"dependencies": {
"express": "4.20.0"
}
}