-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1 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
{
"name": "hear-my-story",
"version": "1.0.0",
"scripts": {
"dev": "concurrently \"npm run dev-api\" \"npm run dev-client\"",
"dev-api": "nodemon api/dev.js",
"dev-client": "cd client && npm run start",
"start": "node index.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"test": "cd api && jest --collectCoverage=true --forceExit",
"test:watch": "cd api && jest --watch --collectCoverage=true --runInBand --detectOpenHandles"
},
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.8",
"mysql2": "^2.1.0",
"react-router-dom": "^5.2.0",
"sequelize": "^6.3.3"
},
"engines": {
"node": "14.x"
},
"devDependencies": {
"concurrently": "^5.1.0",
"nodemon": "^2.0.2",
"jest": "^25.1.0",
"supertest": "^4.0.2"
}
}