-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "tree-view-test-react",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:8080",
"dependencies": {
"dotenv": "^6.0.0",
"jest": "^23.4.2",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.2.7",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-scripts": "1.1.4",
"restify": "^7.2.1",
"restify-cookies": "^0.2.5",
"winston": "^3.0.0"
},
"scripts": {
"start:server": "babel-node ./server/index.js --inspect --presets es2015,stage-2",
"start:db": "cd db && docker-compose up &",
"stop:db": "cd db && docker-compose down &",
"start": "PORT=8081 react-scripts start",
"build": "react-scripts build",
"lint": "eslint src/",
"test:client": "react-scripts test --env=jsdom --coverage",
"test:integration": "mocha --compilers js:babel-core/register",
"precommit": "npm run lint && npm run test:client",
"eject": "react-scripts eject"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"husky": "^0.14.3",
"react-test-renderer": "^16.4.2",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"supertest": "^3.1.0"
}
}