forked from jaysoo/todomvc-redux-react-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.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
{
"name": "todomvc-redux-react-ts",
"version": "1.0.0",
"description": "TodoMVC example using Redux, React, and Typescript ",
"repository": {
"type": "git",
"url": "[email protected]:jaysoo/todomvc-redux-react-typescript.git"
},
"scripts": {
"dev-server": "node webpack/dev-server.js",
"build": "NODE_ENV=production webpack --config webpack/webpack-production.config.js --progress --profile --colors",
"start-dev": "node server/development",
"start": "node server/production",
"test": "./node_modules/.bin/tsc && ./node_modules/.bin/mocha --require test-setup --recursive ./dist/**/__spec__/**/*-spec.js"
},
"author": "Jack Hsu <[email protected]>",
"license": "ISC",
"dependencies": {
"classnames": "2.2.3",
"express": "4.13.3",
"extract-text-webpack-plugin": "0.9.1",
"lodash": "3.10.1",
"react": "0.14.6",
"react-dom": "0.14.6",
"react-redux": "4.0.0",
"redux": "3.0.4",
"redux-actions": "0.8.0",
"serve-static": "1.10.0",
"todomvc-app-css": "2.0.1",
"typescript": "1.7.5",
"yargs": "3.29.0"
},
"devDependencies": {
"babel": "6.3.26",
"babel-core": "6.4.0",
"babel-loader": "6.2.1",
"babel-polyfill": "6.3.14",
"babel-preset-es2015": "6.3.13",
"babel-runtime": "6.3.19",
"chai": "3.4.1",
"css-loader": "0.22.0",
"eslint-plugin-react": "3.8.0",
"file-loader": "0.8.4",
"jsdom": "7.0.2",
"mocha": "2.3.3",
"react-hot-loader": "1.3.0",
"redux-devtools": "2.1.5",
"socket.io": "1.3.7",
"stats-webpack-plugin": "0.1.2",
"style-loader": "0.13.0",
"ts-loader": "0.6.1",
"typescript": "1.6.2",
"typescript-require": "0.2.9-1",
"webpack": "1.12.10",
"webpack-dev-server": "1.14.0"
}
}