-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "school-finder",
"version": "0.0.1",
"engines": {
"node": "6.11.x"
},
"scripts": {
"lint": "eslint ./react-ui/src",
"start": "node server",
"test": "npm run test-backend && npm run test-frontend",
"test-backend": "NODE_ENV=test ./node_modules/.bin/mocha --exit",
"test-frontend": "cd react-ui/ && npm run test",
"test:watch": "npm test -- --watch"
},
"cacheDirectories": [
"node_modules",
"react-ui/node_modules"
],
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"chart.js": "^2.7.1",
"enzyme": "^2.9.1",
"express": "^4.16.2",
"jest": "^18.1.0",
"knex": "^0.13.0",
"marked": "^0.3.9",
"newrelic": "^2.4.0",
"pg": "^7.3.0",
"react-chartjs-2": "^2.6.4",
"react-dom": "^15.6.2",
"react-scripts": "0.9.5"
},
"eslintConfig": {
"extends": "airbnb"
},
"devDependencies": {
"babel-jest": "^18.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"fetch-mock": "^5.13.1",
"mocha": "^4.0.1"
}
}