-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.55 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
{
"name": "symbol-typing",
"private": true,
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"build:production": "NODE_ENV=production webpack",
"typecheck": "flow",
"lint": "eslint src",
"lint:css": "stylelint src/**/*.css",
"test": "NODE_ENV=test ava",
"test:cover": "nyc --reporter=lcov --reporter=text yarn test"
},
"dependencies": {
"deepcopy": "^0.6.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-devtools": "^3.3.2",
"redux-devtools-extension": "^2.13.0",
"redux-devtools-log-monitor": "^1.2.0",
"redux-logger": "^2.8.1",
"redux-promise": "^0.5.3"
},
"devDependencies": {
"autoprefixer": "^6.7.3",
"ava": "^0.18.1",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-dynamic-import-webpack": "^1.0.1",
"babel-plugin-flow-runtime": "^0.5.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.1.8",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.23.0",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-standard": "^2.0.1",
"flow-bin": "^0.39.0",
"flow-runtime": "^0.5.0",
"http-server": "^0.9.0",
"istanbul": "^0.4.5",
"license-webpack-plugin": "^0.4.2",
"mock-css-modules": "^1.0.0",
"normalize.css": "^5.0.0",
"nyc": "^10.1.2",
"postcss": "^5.2.14",
"postcss-apply": "^0.5.0",
"postcss-cli": "^3.0.0-beta",
"postcss-custom-media": "^5.0.1",
"postcss-custom-properties": "^5.0.2",
"postcss-flexbugs-fixes": "^2.1.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.1",
"postcss-nesting": "^2.3.1",
"postcss-sorting": "^2.0.1",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "next",
"style-loader": "^0.13.1",
"stylelint": "^7.8.0",
"stylelint-config-standard": "^16.0.0",
"webpack": "^2.2.1",
"webpack-async-await": "^1.1.0",
"webpack-dev-server": "^2.3.0"
},
"ava": {
"babel": "inherit",
"files": "src/**/*.test.js",
"require": [
"babel-register",
"mock-css-modules"
]
}
}