-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 818 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 818 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
29
30
{
"name": "onetime",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"start": "concurrently --kill-others npm:client npm:server",
"client": "cd client && npm run start",
"server": "DEBUG=onetime:* nodemon --ignore client --exec npm run dev",
"dev": "NODE_ENV=development node ./bin/www",
"prod": "NODE_ENV=production node ./bin/www",
"prettier": "prettier . --write",
"eslint": "eslint ."
},
"dependencies": {
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"socket.io": "^3.1.2"
},
"devDependencies": {
"concurrently": "^6.0.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"morgan": "~1.9.1",
"nodemon": "^2.0.7",
"prettier": "2.2.1"
}
}