-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) · 1.25 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": "just4giving",
"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",
"quick": "npm i && cd client && npm i && cd .. && npm run dev",
"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",
"db": "node api/scripts/createDb.js && node api/scripts/sync && node api/scripts/user.js && node api/scripts/categories.js && node api/scripts/goods.js"
},
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^7.4.4",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"react-redux": "^7.2.4",
"sequelize": "^6.6.2"
},
"devDependencies": {
"concurrently": "^6.0.2",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
}
}