-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "todomvc-react-redux-typescript",
"version": "0.0.1",
"description": "a light todo demo with react & redux & typescript",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "cross-env NODE_ENV=test mocha --recursive --compilers js:babel-register --require ./test/setup.js",
"test:watch": "npm test -- --watch"
},
"keywords": [
"todomvc",
"react",
"redux",
"typescript"
],
"author": "nitta-honoka",
"license": "MIT",
"dependencies": {
"classnames": "^2.1.2",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.2.1",
"redux": "^3.2.1",
"redux-actions": "^0.10.1"
},
"devDependencies": {
"cross-env": "^1.0.7",
"enzyme": "^2.2.0",
"expect": "^1.8.0",
"express": "^4.13.3",
"jsdom": "^5.6.1",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^0.14.7",
"source-map-loader": "^0.1.5",
"style-loader": "^0.12.3",
"todomvc-app-css": "^2.0.1",
"ts-loader": "^0.8.2",
"typescript": "^1.8.10",
"typings": "^1.3.2",
"webpack": "^1.9.11",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.9.1"
}
}