-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.49 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
73
74
75
76
77
78
79
80
81
{
"name": "todomvc-redux-react-ts",
"version": "2.1.0",
"description": "TodoMVC example using Redux, React, and Typescript ",
"repository": {
"type": "git",
"url": "git@github.com: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 <jack.hsu@gmail.com>",
"license": "ISC",
"dependencies": {
"axios": "0.16.2",
"body-parser": "1.17.2",
"classnames": "2.2.5",
"concurrently": "3.4.0",
"express": "4.15.2",
"extract-text-webpack-plugin": "2.1.0",
"jquery": "3.2.1",
"lodash": "4.17.4",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-redux": "5.0.3",
"redux": "3.6.0",
"redux-actions": "2.0.1",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"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/lodash": "4.14.54",
"@types/mocha": "2.2.39",
"@types/react": "15.0.15",
"@types/react-dom": "0.14.23",
"@types/react-redux": "4.4.37",
"@types/redux": "3.6.0",
"@types/redux-actions": "1.2.3",
"awesome-typescript-loader": "3.1.2",
"babel-core": "6.23.1",
"babel-eslint": "7.1.1",
"babel-loader": "6.4.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-latest": "6.24.0",
"babel-preset-react": "6.23.0",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-2": "6.22.0",
"babel-runtime": "6.23.0",
"chai": "3.5.0",
"chalk": "1.1.3",
"cross-env": "3.2.3",
"css-loader": "0.26.4",
"eslint": "3.17.1",
"eslint-plugin-react": "6.10.0",
"file-loader": "0.10.1",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.28.0",
"jsdom": "9.11.0",
"mocha": "3.2.0",
"redux-devtools": "3.3.2",
"socket.io": "1.7.3",
"stats-webpack-plugin": "0.5.0",
"style-loader": "0.13.2",
"ts-loader": "2.0.1",
"typescript": "2.2.1",
"typescript-require": "0.2.9-1",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1",
"webpack-hot-middleware": "2.17.1"
}
}