-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.71 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
{
"name": "react-todo-list",
"version": "0.1.0",
"description": "React webpack starter template",
"main": "lib/index.js",
"dependencies": {
"redux-thunk": "^1.0.0"
},
"author": {
"name": "David White"
},
"license": "MIT",
"keywords": [
"react",
"carousel",
"responsive"
],
"repository": {
"type": "git",
"url": "https://github.com/dwhite96/react-todo-list.git"
},
"scripts": {
"dev": "WEBPACK_ENV=dev ./node_modules/.bin/webpack --watch --inline",
"build": "WEBPACK_ENV=build ./node_modules/.bin/webpack",
"test": "karma start",
"test:ci": "watch 'npm run test' src/"
},
"devDependencies": {
"axios": "^0.7.0",
"babel-cli": "^6.11.4",
"babel-core": "6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"chai": "3.3.0",
"classnames": "^2.1.5",
"core-js": "1.1.4",
"eslint": "^3.1.1",
"eslint-loader": "1.4.1",
"eslint-plugin-react": "5.2.2",
"faker": "^3.0.1",
"immutable": "^3.7.5",
"karma": "0.13.10",
"karma-chai": "0.1.0",
"karma-chai-plugins": "0.6.0",
"karma-chai-sinon": "0.1.5",
"karma-chrome-launcher": "0.2.0",
"karma-mocha": "0.2.0",
"karma-mocha-reporter": "1.1.1",
"karma-phantomjs-launcher": "0.2.1",
"karma-sinon": "1.0.4",
"karma-sinon-chai": "1.1.0",
"karma-sourcemap-loader": "0.3.5",
"karma-webpack": "1.7.0",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^3.0.1",
"redux": "^3.0.2",
"redux-devtools": "^2.1.5",
"watch": "0.16.0",
"webpack": "1.12.2",
"webpack-dev-server": "1.11.0"
}
}