-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 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": "mwi-client-react",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"postinstall": "cd client && yarn install",
"client": "cd client && NODE_OPTIONS=--openssl-legacy-provider yarn start",
"server": "node server/src/initAdmin.js && NODE_OPTIONS=--openssl-legacy-provider nodemon --exec \"babel-node -r dotenv/config server/src/start.js\"",
"standalone": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\""
},
"dependencies": {
"@postlight/mercury-parser": "^2.2.0",
"bcrypt": "^6.0.0",
"body-parser": "^1.19.0",
"concurrently": "^5.0.2",
"dotenv": "^16.5.0",
"express": "^4.17.1",
"express-session": "^1.18.1",
"jsonwebtoken": "^9.0.2",
"nodemon": "^2.0.2",
"request": "2.88",
"resend": "^4.5.1",
"sass": "^1.70.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/preset-env": "^7.7.7"
}
}