-
Notifications
You must be signed in to change notification settings - Fork 175
/
package.json
71 lines (71 loc) · 2.21 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
{
"name": "todomvc-redux-react-ts",
"version": "2.1.0",
"description": "TodoMVC example using Redux, React, and Typescript ",
"repository": {
"type": "git",
"url": "[email protected]:jaysoo/todomvc-redux-react-typescript.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.config.js --progress --profile --colors",
"start": "cross-env NODE_ENV=development node server",
"start:prod": "cross-env NODE_ENV=production node server",
"test": "tsc && mocha --require test-setup --recursive ./dist/**/__spec__/**/*-spec.js"
},
"author": "Jack Hsu <[email protected]>",
"license": "ISC",
"dependencies": {
"classnames": "2.2.5",
"concurrently": "3.4.0",
"express": "4.15.2",
"extract-text-webpack-plugin": "2.1.0",
"react": "16.0.0",
"react-dom": "16.0.0",
"react-redux": "5.0.6",
"redux": "3.7.2",
"redux-actions": "2.2.1",
"serve-static": "1.12.1",
"todomvc-app-css": "2.0.6",
"yargs": "7.0.1"
},
"devDependencies": {
"@types/assertion-error": "1.0.30",
"@types/chai": "3.4.35",
"@types/classnames": "0.0.32",
"@types/mocha": "2.2.39",
"@types/react": "16.0.10",
"@types/react-dom": "16.0.1",
"@types/react-redux": "5.0.10",
"@types/redux-actions": "2.2.2",
"awesome-typescript-loader": "3.2.3",
"babel-core": "6.26.0",
"babel-eslint": "8.0.1",
"babel-loader": "7.1.2",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-latest": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-2": "6.24.1",
"babel-runtime": "6.26.0",
"chai": "3.5.0",
"chalk": "2.1.0",
"cross-env": "5.0.5",
"css-loader": "0.28.7",
"eslint": "4.8.0",
"eslint-plugin-react": "7.4.0",
"file-loader": "1.1.5",
"html-loader": "0.5.1",
"html-webpack-plugin": "2.30.1",
"jsdom": "9.11.0",
"mocha": "4.0.1",
"redux-devtools": "3.4.0",
"socket.io": "1.7.3",
"stats-webpack-plugin": "0.6.1",
"style-loader": "0.19.0",
"typescript": "2.5.3",
"webpack": "3.7.1",
"webpack-dev-server": "2.9.1",
"webpack-hot-middleware": "2.19.1"
}
}