-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.8 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
{
"name": "react-typescript-starter",
"author": "konstantin",
"license": "UNLICENSED",
"scripts": {
"setup": "cp ./githooks/* .git/hooks && yarn",
"start": "cross-env NODE_ENV=development webpack serve --config webpack.config.js --progress --profile --content-base src/ --open 'Chrome'",
"build": "cross-env NODE_ENV=production webpack",
"test": "tslint -c tslint.json 'src/**/*.ts' 'src/**/*.tsx' && yarn build"
},
"dependencies": {
"@types/classnames": "^2.2.11",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-redux": "^7.1.16",
"@types/react-router": "^5.1.12",
"@types/react-router-dom": "^5.1.7",
"@types/redux-actions": "^2.6.1",
"@types/styled-components": "5.1.9",
"classnames": "^2.2.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-string-replace": "^0.4.4",
"react-styled-flexboxgrid": "^3.2.1",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"styled-components": "5.2.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"cross-env": "^7.0.3",
"css-loader": "^5.1.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"style-loader": "^2.0.0",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.1.0",
"typescript": "4.2.3",
"url-loader": "^4.1.1",
"webpack": "^5.26.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}