-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "volunteer-manager-app",
"version": "1.0.0",
"description": "Volunteer Manager App by bears-team-03",
"main": "server.js",
"engines": {
"node": "10.x"
},
"scripts": {
"start": "node server.js",
"test": "mocha \"./{,!(node_modules)/**/}*.test.js\" --exit",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"author": "Layer, mikitor, Phrixus",
"license": "ISC",
"dependencies": {
"express": "^4.16.4",
"helmet": "^3.15.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.13"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-react-app": "^3.0.7",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"mocha": "^5.2.0",
"nodemon": "^1.18.6",
"prettier": "^1.16.4"
}
}