-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "immutable-todo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register ./test --recursive",
"test:watch": "npm run test --watch",
"webpackDevServer": "webpack-dev-server --config webpack.dev.config.js --progress --colors",
"build": "webpack --config webpack.product.config.js --progress --colors && gulp styles"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "^6.21.0",
"classnames": "^2.2.5",
"immutable": "^3.8.0",
"marked": "^0.3.6",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-redux": "^4.4.5",
"redux": "^3.4.0",
"redux-thunk": "^2.2.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"chai-immutable": "^1.6.0",
"clean-webpack-plugin": "^0.1.15",
"css-loader": "^0.26.4",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-clean-css": "^3.0.4",
"gulp-concat": "^2.6.1",
"gulp-imagemin": "^3.2.0",
"gulp-notify": "^3.0.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-uglify": "^2.1.2",
"html-webpack-plugin": "^2.28.0",
"mocha": "^3.2.0",
"node-sass": "^4.5.1",
"open-browser-webpack-plugin": "0.0.4",
"redux-logger": "^3.0.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
}
}