-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
123 lines (122 loc) · 3.58 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "tt",
"version": "0.0.1",
"private": true,
"description": "My awesome project.",
"scripts": {
"add:action": "node ./tools/cli/add_action.js",
"add:async-action": "node ./tools/cli/add_async_action.js",
"add:component": "node ./tools/cli/add_component.js",
"add:feature": "node ./tools/cli/add_feature.js",
"add:page": "node ./tools/cli/add_page.js",
"build": "node ./tools/build.js",
"build:test": "node ./tools/build_test_server.js",
"rm:action": "node ./tools/cli/rm_action.js",
"rm:async-action": "node ./tools/cli/rm_async_action.js",
"rm:component": "node ./tools/cli/rm_component.js",
"rm:feature": "node ./tools/cli/rm_feature.js",
"rm:page": "node ./tools/cli/rm_page.js",
"start": "node ./tools/server.js",
"test": "node ./tools/run_test.js app",
"test:app": "node ./tools/run_test.js app",
"test:cli": "node ./tools/run_test.js cli"
},
"babel": {
"presets": ["es2015", "react", "babel-preset-stage-0"],
"plugins": [
"react-hot-loader/babel",
"lodash",
[
"module-resolver",
{
"alias": {
"src": "./src",
"features": "./src/features"
}
}
]
],
"env": {
"test": {
"plugins": ["istanbul"]
}
}
},
"nyc": {
"include": ["index.js", "src/**/*.js", "tools/cli/*.js"],
"exclude": ["tools/**/templates", ".tmp"],
"reporter": ["lcov", "text-summary"],
"cache": false,
"sourceMap": false,
"instrument": true
},
"webpackDevServerPort": 6076,
"buildTestServerPort": 6077,
"dependencies": {
"@blueprintjs/core": "^1.27.0",
"admin-on-rest": "^1.2.2",
"babel-core": "^6.14.0",
"babel-polyfill": "^6.13.0",
"copy-webpack-plugin": "^4.0.1",
"isomorphic-fetch": "^2.2.1",
"jsx-control-statements": "^3.1.5",
"later": "^1.2.0",
"lodash": "^4.15.0",
"memobind": "^0.5.0",
"react": "~15.5.4",
"react-addons-css-transition-group": "^15.6.0",
"react-dom": "^15.3.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "~5.0.4",
"react-router": "~4.1.0",
"react-router-dom": "~4.1.0",
"react-router-redux": "~5.0.0-alpha.5",
"redux": "^3.6.0",
"redux-form": "~6.6.3",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"request": "^2.75.0",
"reselect": "^2.5.3",
"shelljs": "^0.7.4",
"trash": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-lodash": "^3.2.8",
"babel-plugin-module-resolver": "^2.2.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-babel-module": "^2.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.1",
"eslint-plugin-react": "^6.2.0",
"estraverse": "^4.2.0",
"estraverse-fb": "^1.3.1",
"file-loader": "^0.9.0",
"jsdom": "^9.5.0",
"lodash-webpack-plugin": "^0.10.0",
"mocha": "^3.0.2",
"mocha-webpack": "^0.7.0",
"nock": "^9.0.2",
"npm-run": "^4.1.0",
"nyc": "^9.0.1",
"react-addons-test-utils": "^15.3.1",
"redux-mock-store": "^1.2.0",
"sinon": "^1.17.5",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1",
"webpack-node-externals": "^1.3.3",
"yargs": "^8.0.1"
}
}