-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 KB
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
{
"name": "laura",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": "6.9.x"
},
"scripts": {
"lint": "eslint server",
"start": "node server",
"develop": "nodemon server --ignore react-ui/ --ignore __test__",
"test": "jest --runInBand",
"test:watch": "npm test -- --watch",
"heroku-postbuild": "cd react-ui/ && npm install --only=dev && npm install && npm run build"
},
"cacheDirectories": ["node_modules", "react-ui/node_modules"],
"dependencies": {
"basic-auth": "^1.1.0",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"mongoose": "^4.11.1"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-prettier": "^2.1.2",
"jest": "^20.0.4",
"nodemon": "^1.11.0",
"prettier": "^1.5.2",
"supertest": "^3.0.0"
}
}