-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.25 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
77
78
79
80
81
{
"name": "dporganizer-react-boilerplate",
"version": "1.0.0",
"description": "",
"author": "DPOrganizer",
"license": "MIT",
"main": "app/main.jsx",
"scripts": {
"lint": "eslint '@(api|app)/**/*.@(js|jsx)'",
"test": "jest",
"test-coverage": "jest --coverage",
"build": "webpack",
"start": "concurrently \"babel-watch api/server.js\" \"webpack-dev-server --devtool eval --progress --hot --content-base app\"",
"deploy": "NODE_ENV=production webpack -p --config webpack.production.config.js",
"deploy-windows": "SET NODE_ENV=production & webpack -p --config webpack.production.config.js"
},
"dependencies": {
"babel-runtime": "6.23.0",
"hapi": "16.1.0",
"hapi-swagger": "7.7.0",
"inert": "4.2.0",
"lodash": "4.17.4",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-redux": "5.0.3",
"redux": "3.6.0",
"redux-thunk": "2.2.0",
"request": "2.81.0",
"request-promise": "4.2.0",
"rest": "2.0.0",
"vision": "4.1.1"
},
"devDependencies": {
"@types/enzyme": "2.7.7",
"@types/jest": "19.2.2",
"babel-core": "6.23.1",
"babel-eslint": "7.1.1",
"babel-jest": "19.0.0",
"babel-loader": "6.3.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-0": "6.22.0",
"babel-watch": "2.0.6",
"concurrently": "3.3.0",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.26.2",
"enzyme": "2.7.1",
"eslint": "3.16.1",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.0",
"jest": "19.0.2",
"jest-css-modules": "1.1.0",
"open-browser-webpack-plugin": "0.0.4",
"pre-commit": "1.2.2",
"react-addons-test-utils": "15.4.2",
"react-test-renderer": "15.4.2",
"style-loader": "0.13.2",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2"
},
"jest": {
"transform": {
".*": "jest-css-modules"
},
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
},
"pre-commit": [
"lint"
]
}