-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.46 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
{
"name": "react-starter",
"private": true,
"version": "1.0.0",
"description": "My react starter",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"start": "cross-env NODE_ENV=development webpack-dev-server --progress --config webpack.config.js",
"dev:dll": "cross-env NODE_ENV=development webpack --config ./webpack.config.dll.js --progress --profile --colors",
"build:dll": "cross-env NODE_ENV=production webpack --config ./webpack.config.dll.js --progress --profile --colors",
"test": "DEBUG=react-starter* ava",
"test-and-build-if-need": "node ./tools/test-and-build-if-need.js",
"lint": "eslint src",
"flow": "flow check"
},
"_comments_for_moduleRoots": "for atom plugin js-hyperclick",
"moduleRoots": [
"src"
],
"pre-commit": [
"test-and-build-if-need"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zaaack/react-starter.git"
},
"keywords": [
"react",
"starter"
],
"author": "zaaack",
"license": "MIT",
"bugs": {
"url": "https://github.com/zaaack/react-starter/issues"
},
"homepage": "https://github.com/zaaack/react-starter#readme",
"devDependencies": {
"@webpack-blocks/babel6": "^0.4.1",
"@webpack-blocks/css-modules": "^0.4.0",
"@webpack-blocks/dev-server2": "^0.4.0",
"@webpack-blocks/webpack2": "^0.4.0",
"ava": "^0.19.1",
"axios": "^0.16.1",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-module-resolver": "^2.7.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"clean-webpack-plugin": "^0.1.16",
"core-decorators": "^0.17.0",
"cross-env": "^4.0.0",
"date-fns": "^1.28.4",
"debug": "^2.6.4",
"dot-prop-immutable": "https://github.com/zaaack/dot-prop-immutable",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.49.1",
"immuter": "^1.0.4",
"js-polyfills": "^0.1.33",
"jsdom": "^10.0.0",
"keymirror": "^0.1.1",
"lodash": "^4.17.4",
"polished": "^1.0.4",
"pre-commit": "^1.2.2",
"prop-types": "^15.5.9",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-hot-loader": "next",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"react-router-redux": "next",
"react-test-renderer": "^15.5.4",
"redux": "^3.6.0",
"redux-connect": "^5.1.0",
"redux-logger": "^3.0.1",
"redux-promise-middleware": "^4.2.0",
"redux-thunk": "^2.2.0",
"styled-components": "^1.4.5",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {},
"ava": {
"files": [
"**/*.test.js"
],
"require": [
"babel-register",
"./test/setup.js"
],
"babel": "inherit"
}
}