-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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
43
44
45
46
47
48
{
"name": "vehicle-manager",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"server": "npm start src/index.js",
"client-install": "npm install --prefix client",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "mocha src/test",
"test:watch": "npm test -- --watch",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"nodemon": "^1.19.4"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"chai-http": "^4.3.0",
"concurrently": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"filepond": "^4.7.4",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"pg": "^7.12.1",
"react-filepond": "^7.0.1",
"react-redux": "^7.1.3",
"request": "^2.88.0",
"sequelize": "^5.21.2",
"validator": "^12.0.0",
"snyk": "^1.345.1"
},
"snyk": true
}