-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "email-survey-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "v19.3.0",
"npm": "9.2.0"
},
"scripts": {
"start": "node index.js",
"server": "nodemon -L index.js",
"client": "npm run start --prefix client",
"client-wsl": "npm run start-wsl --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"dev-wsl": "concurrently \"npm run server\" \"npm run client-wsl\"",
"railway-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.1",
"concurrently": "^7.6.0",
"cookie-session": "^2.0.0",
"express": "^4.18.2",
"lodash": "^4.17.21",
"mongoose": "^6.7.5",
"ngrok": "^4.3.3",
"nodemon": "^2.0.20",
"passport": "^0.5.3",
"passport-google-oauth20": "^2.0.0",
"path-parser": "^6.1.0",
"sendgrid": "^5.2.3",
"stripe": "^11.2.0"
},
"devDependencies": {
"@types/redux-form": "^8.3.5"
}
}