-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.22 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
{
"name": "react-redux-boiler",
"version": "1.0.0",
"description": "",
"scripts": {
"watch": "webpack-dev-server --config webpack.config.js --colors --progress --hot",
"build": "set NODE_ENV=production || export NODE_ENV=production && webpack --progress --color",
"lint": "tslint -p tsconfig.json --format stylish",
"sasslint": "sass-lint -c .sass-lint.yml --no-exit -v",
"prewatch": "webpack --progress --colors",
"test": "jest --no-cache",
"test:watch": "jest --watch --no-cache"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/enzyme": "3.1.9",
"@types/enzyme-adapter-react-16": "1.0.2",
"@types/jest": "22.1.3",
"@types/lodash": "4.14.104",
"@types/react": "16.0.38",
"@types/react-dom": "16.0.4",
"@types/react-redux": "5.0.15",
"@types/react-router": "4.0.22",
"@types/react-router-dom": "4.2.4",
"@types/redux-actions": "2.2.4",
"@types/redux-logger": "3.0.5",
"@types/redux-saga": "0.10.5",
"awesome-typescript-loader": "3.4.1",
"axios": "0.17.1",
"css-loader": "0.28.9",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.6",
"html-webpack-plugin": "2.30.1",
"identity-obj-proxy": "3.0.0",
"jest": "22.4.2",
"lodash": "4.17.5",
"node-sass": "4.7.2",
"normalize.css": "8.0.0",
"raw-loader": "0.5.1",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "5.0.7",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"react-test-renderer": "16.2.0",
"redux": "3.7.2",
"redux-actions": "2.2.1",
"redux-axios": "0.0.2",
"redux-axios-middleware": "4.0.0",
"redux-devtools-extension": "2.13.2",
"redux-logger": "3.0.6",
"redux-saga": "0.16.0",
"reselect": "3.0.1",
"sass-lint": "1.12.1",
"sass-loader": "6.0.6",
"source-map-loader": "0.2.3",
"style-loader": "0.20.2",
"to-string-loader": "1.1.5",
"ts-jest": "22.0.4",
"ts-loader": "3.5.0",
"tslint": "5.9.1",
"tslint-react": "3.5.1",
"typescript": "2.7.2",
"url-loader": "0.6.2",
"webpack": "3.11.0",
"webpack-dev-server": "2.11.1",
"webpack-node-externals": "1.6.0"
}
}