-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "typescript-react-redux-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server -d --colors --progress",
"build": "webpack -p --colors --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Mikhail Shatikhin",
"license": "MIT",
"lint-staged": {
"linters": {
"*.{ts,tsx}": [
"prettier --single-quote --parser typescript --write",
"git add"
],
"*.{css, json}": [
"prettier --write",
"git add"
]
}
},
"dependencies": {
"@skbkontur/react-ui": "0.19.1",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-redux": "5.0.7",
"redux": "4.0.0",
"redux-logger": "3.0.6",
"redux-saga": "0.16.0",
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"@types/clean-webpack-plugin": "0.1.0",
"@types/html-webpack-plugin": "2.30.1",
"@types/react": "16.4.7",
"@types/react-dom": "16.0.6",
"@types/react-redux": "5.0.14",
"@types/redux": "3.6.0",
"@types/redux-logger": "3.0.5",
"@types/redux-saga": "0.10.5",
"@types/webpack": "3.8.2",
"@types/whatwg-fetch": "0.0.33",
"clean-webpack-plugin": "0.1.17",
"cross-env": "5.1.3",
"css-loader": "0.28.8",
"file-loader": "^0.11.2",
"html-webpack-plugin": "2.30.1",
"lint-staged": "^6.0.0",
"prettier": "1.9.2",
"style-loader": "0.19.1",
"ts-loader": "3.2.0",
"ts-node": "4.1.0",
"tslint": "5.8.0",
"tslint-config-prettier": "^1.14.0",
"tslint-react": "3.3.3",
"typed-css-modules": "0.3.1",
"typed-css-modules-loader": "0.0.11",
"typescript": "2.9.2",
"webpack": "3.10.0",
"webpack-dev-server": "^2.10.1"
}
}