-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "twelve-app",
"version": "1.0.0",
"description": "react, express, node and mongodb full stack app.",
"main": "index.js",
"scripts": {
"start": "node server/server",
"server": "nodemon server/server",
"client": "npm run start --prefix frontend",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\" ",
"heroku-postbuild": "npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1101.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"config": "^3.3.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"http-proxy-middleware": "^1.0.5",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.7",
"mongoose-sequence": "^5.2.2",
"multer": "^1.4.2",
"nodemon": "^2.0.4",
"normalize-url": "^5.3.1",
"react-helmet-async": "^1.0.7",
"react-swipeable-views": "^0.13.9",
"regenerator-runtime": "^0.13.7",
"request": "^2.88.2",
"tape": "^5.0.1",
"uuid": "^8.3.0"
},
"engines": {
"node": "12.19.0"
}
}