-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.04 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "webpack-todolist",
"version": "1.0.0",
"description": "Only one more simple todolist",
"main": "index.js",
"scripts": {
"test": "node node_modules/karma/bin/karma start --css-module-test",
"test:dev": "node node_modules/karma/bin/karma start --dev --css-module-test",
"build": "node node_modules/webpack/bin/webpack.js --config webpack.config.js --optimize-minimize",
"build:dev": "node node_modules/webpack/bin/webpack.js --watch --config webpack.config.js",
"docs": "node react.doc.js",
"serve": "node node_modules/http-server/bin/http-server -p 3000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidiego/webpack-todolist.git"
},
"keywords": [
"reactjs",
"es6",
"es2015",
"javascript",
"redux",
"webpack",
"css",
"sass",
"css-modules"
],
"author": "Guilherme Diego <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/guidiego/webpack-todolist/issues"
},
"homepage": "https://github.com/guidiego/webpack-todolist#readme",
"devDependencies": {
"autoprefixer-core": "^6.0.1",
"babel-core": "^6.4.5",
"babel-eslint": "5.0.0",
"babel-loader": "^6.2.1",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"chai": "^3.5.0",
"chai-equal-jsx": "^1.0.9",
"classnames": "^2.2.3",
"core-js": "1.1.4",
"css-loader": "^0.23.1",
"eslint": "1.4.3",
"eslint-loader": "1.0.0",
"eslint-plugin-react": "3.4.1",
"extract-text-webpack-plugin": "^1.0.1",
"http-server": "^0.9.0",
"immutable": "^3.7.6",
"istanbul-instrumenter-loader": "^0.2.0",
"karma": "^0.13.3",
"karma-chai": "0.1.0",
"karma-chai-plugins": "0.6.0",
"karma-chai-sinon": "0.1.5",
"karma-chrome-launcher": "0.2.0",
"karma-coverage": "^0.5.5",
"karma-mocha": "0.2.0",
"karma-phantomjs-launcher": "^0.2.0",
"karma-sinon": "1.0.4",
"karma-sinon-chai": "1.1.0",
"karma-sourcemap-loader": "0.3.5",
"karma-spec-reporter": "0.0.23",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"phantomjs": "^1.9.17",
"phantomjs-polyfill": "0.0.1",
"postcss": "^5.0.19",
"postcss-color-rebeccapurple": "^2.0.0",
"postcss-loader": "^0.8.2",
"react": "^15.0.1",
"react-addons-test-utils": "^0.14.7",
"react-bootstrap": "^0.28.5",
"react-dom": "^15.0.1",
"react-prop-table": "^0.1.1",
"react-redux": "^4.4.2",
"redux": "^3.4.0",
"redux-immutablejs": "0.0.8",
"redux-storage": "^4.0.0",
"redux-storage-engine-localstorage": "^1.0.2",
"redux-storage-merger-immutablejs": "^1.0.1",
"resolve-url-loader": "^1.4.3",
"sass-loader": "^3.2.0",
"shelljs": "^0.6.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"skin-deep": "^0.16.0",
"style-loader": "^0.13.1",
"watch": "0.16.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"debug": "^2.2.0",
"react-prop-table": "^0.1.1"
}
}