-
Notifications
You must be signed in to change notification settings - Fork 288
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 906 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 906 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
31
{
"scripts": {
"start": "nodemon server.js",
"start-with-client": "concurrently \"cross-env DISABLE_LOGS=true node server.js\" \"cd ./client && cross-env BROWSER=none yarn start\"",
"pretty": "prettier --write \"client/src/**/*.{ts*,css,js*}\"",
"test": "cd ./client && yarn test"
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.18.3",
"concurrently": "^6.0.0",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.3.3",
"cors": "^2.8.5",
"cross-env": "^7.0.0",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-http-proxy": "^1.5.1",
"express-session": "^1.15.6",
"http-proxy-middleware": "^0.19.1",
"jose-jwe-jws": "^0.1.7",
"jwt-decode": "^2.2.0",
"nodemon": "^2.0.3",
"passport": "^0.4.0",
"passport-auth0": "^1.1.0",
"set-value": "2.0.1"
},
"devDependencies": {
"prettier": "^1.16.4"
}
}