-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "midi-space",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"dependencies": {
"cross-env": "7.0.3",
"express": "^4.14.0",
"express-pino-logger": "^6.0.0",
"midi": "^1.0.0",
"nodemon": "^2.0.7",
"pino": "^6.11.1",
"pino-pretty": "^4.7.0",
"socket.io": "^1.5.0",
"sse": "0.0.8"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"rimraf": "*"
},
"scripts": {
"dev": "npm run dev:server",
"dev:server": "cross-env NODE_ENV=development nodemon --inspect=5001 --config nodemon.js server/index.js -- --verbose",
"build": "rimraf build && mkdir -p build && npm i && npm run build:server && npm run build:client",
"build:server": "cross-env NODE_ENV=production rimraf node_modules && npm i --production",
"build:client": "cross-env NODE_ENV=production && cd frontend/manager && npm run build && cp -r build/* ../../build/",
"start": "cross-env NODE_ENV=production node server/index.js"
},
"postinstall": {},
"keywords": [],
"author": "",
"license": "ISC",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}