-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1003 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1003 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
32
33
34
35
{
"name": "cooool",
"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": {
"@sendgrid/mail": "^6.5.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.5",
"mongoose": "^5.9.5",
"multer": "^1.4.2",
"reactstrap": "^8.4.1",
"sharp": "^0.25.1",
"validator": "^12.2.0"
},
"devDependencies": {
"concurrently": "^5.1.0",
"jest": "^25.2.3",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}