-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
72 lines (72 loc) · 2.73 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-typescript-webpack-starter",
"version": "0.1.0",
"description": "React / Redux / Typescript / Webpack - Starter",
"author": "Piotr Witek <[email protected]> (https://piotrwitek.github.io/)",
"homepage": "https://piotrwitek.github.io/react-redux-typescript-webpack-starter/",
"repository": "https://github.com/piotrwitek/react-redux-typescript-webpack-starter.git",
"bugs": "https://github.com/piotrwitek/react-redux-typescript-webpack-starter/issues",
"license": "MIT",
"main": "dist/app.js",
"scripts": {
"clean": "rimraf dist",
"build": "yarn run clean && webpack-dashboard -- webpack --config configs/webpack.config.js --env.build --env.sourceMap",
"dev": "webpack-dev-server --config configs/webpack.config.js --open",
"dev:dashboard": "webpack-dashboard -m -- webpack-dev-server --config configs/webpack.config.js --open",
"dev:awesome": "webpack-dashboard -m -- webpack-dev-server --config configs/webpack.config.js --open --env.awesome",
"lint": "tslint --project tsconfig.json",
"tsc": "tsc -p . --noEmit",
"tsc:watch": "tsc -p . --noEmit -w",
"test": "jest --config jest.json",
"test:watch": "jest --config jest.json --watch",
"test:update": "jest --config jest.json -u",
"reinstall": "rm -rf node_modules && yarn",
"reinstall:win": "rd /s /q node_modules && yarn",
"precommit": "yarn run lint",
"prepush": "yarn run lint & yarn run tsc & yarn run test",
"deploy": "echo 'deploy not set!'",
"graph": "tsc && madge --image graph.svg out/index.js --warning"
},
"dependencies": {
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "5.0.6",
"react-router-dom": "4.2.2",
"react-router-redux": "5.0.0-alpha.9",
"redux": "3.7.2",
"redux-observable": "0.17.0",
"reselect": "3.0.1",
"rxjs": "5.5.6",
"tslib": "1.8.1",
"typesafe-actions": "1.1.2",
"utility-types": "1.0.0-rc.2"
},
"devDependencies": {
"@types/enzyme": "3.1.6",
"@types/jest": "22.0.1",
"@types/react": "16.0.34",
"@types/react-dom": "16.0.3",
"@types/react-hot-loader": "3.0.5",
"@types/react-redux": "5.0.14",
"@types/react-router-dom": "4.2.3",
"@types/react-router-redux": "5.0.11",
"@types/webpack": "3.8.2",
"@types/webpack-dev-server": "2.9.2",
"@types/webpack-env": "1.13.3",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"html-webpack-plugin": "2.30.1",
"husky": "0.14.3",
"jest": "22.1.1",
"react-hot-loader": "3",
"rimraf": "2.6.2",
"ts-jest": "22.0.1",
"ts-loader": "3.2.0",
"tslint": "5.9.1",
"tslint-react": "3.4.0",
"typescript": "2.6.2",
"webpack": "2",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "2.11.0"
}
}