-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "premodernoracle",
"version": "0.1.0",
"private": true,
"engineStrict": true,
"engines": {
"node": "18.12.1"
},
"scripts": {
"client": "cd client && npm run start -- --configuration development",
"client-prod": "NODE_ENV=production && cd client && npm run start -- --configuration production",
"server": "node-env-run server --exec nodemon | pino-colada",
"server-prod": "node-env-run server --exec nodemon",
"heroku-postbuild": "cd client && npm install && npm run build -- --configuration ${NODE_ENV}",
"dev": "run-p client server",
"prod": "run-p client-prod server-prod",
"start": "cd server && node index.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-pino-logger": "^4.0.0",
"express-rate-limit": "^6.7.0",
"morgan": "^1.10.0",
"mysql2": "^3.1.2",
"sqlstring": "^2.3.3",
"string-similarity": "^4.0.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"node-env-run": "^4.0.2",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"pino-colada": "^2.2.2",
"ts-node": "^10.9.1"
}
}