-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
49
50
51
52
53
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "12.16.2",
"npm": "6.14.4"
},
"scripts": {
"start": "node index.js",
"dev": "env-cmd -f ./config/dev.env nodemon index.js",
"test": "env-cmd -f ./config/test.env jest --watch --runInBand",
"lint": "eslint ./api ./models ./test ./*js ",
"lint:fix": "npm run lint -- --fix",
"lint:all": "npm run lint && cd client && npm run lint",
"client": "cd client && npm start",
"heroku-postbuild": "cd client && npm install && npm run build",
"kgi": "concurrently \"npm run dev\" \"npm run client\"",
"ci:build": "npm ci && cd client && npm ci"
},
"pre-commit": [
"lint:all"
],
"jest": {
"testEnvironment": "node"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^5.3.0",
"express": "^4.17.1",
"formidable": "^1.2.2",
"googleapis": "^39.2.0",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"migrate-mongo": "^8.2.2",
"mongoose": "^5.9.24",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-gridfs-storage": "^5.0.0",
"sharp": "^0.28.3"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"sinon": "^9.0.2",
"supertest": "^4.0.2",
"pre-commit": "^1.2.2"
}
}