forked from uranus84/uranus84
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.88 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "household-management-app",
"version": "1.0.0",
"description": "none",
"author": "",
"license": "none",
"engines": {
"node": "6.11.5",
"npm": "5.5.1"
},
"scripts": {
"build": "webpack",
"build:dev": "webpack -d --watch",
"lint": "eslint client && eslint database && eslint server",
"start": "node server/index.js",
"test": "jest"
},
"dependencies": {
"axios": "^0.17.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"express-session": "^1.15.6",
"moment": "^2.19.2",
"mysql": "^2.15.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"react": "^16.1.1",
"react-day-picker": "^6.2.1",
"react-dom": "^16.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/uranus84/uranus84"
},
"devDependencies": {
"axios-mock-adapter": "^1.10.0",
"babel": "^6.23.0",
"babel-cli": "^6.7.5",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.7.2",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"mocha": "^4.0.1",
"react-test-renderer": "^16.1.1",
"sinon": "^4.1.2",
"style-loader": "^0.19.0",
"supertest": "^3.0.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"babel": {
"presets": [
"react",
"es2015"
]
}
}