-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.43 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": "cars",
"version": "0.0.1",
"description": "cars fault finding app",
"engines": {
"node": "8.11.x"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"mongoose": "^5.3.14"
},
"scripts": {
"start": "node server",
"heroku-postbuild": "cd client/ && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon --watch server server",
"client": "node start-client.js",
"lint:be": "eslint server",
"lint:fe": "eslint client/src",
"lint": "npm run lint:be && npm run lint:fe",
"test:fe": "cd client && npm test",
"test:fe:ci": "cd client && CI=TRUE npm test",
"test:be": "mocha server/test/setup.js --recursive server/**/*.test.js",
"test": "npm run test:be && npm run test:fe:ci"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"license": "MIT",
"devDependencies": {
"babel-eslint": "^9.0.0",
"concurrently": "^4.1.0",
"dotenv": "^6.1.0",
"eslint": "5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.6",
"supertest": "^3.3.0"
}
}