-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 KB
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
{
"name": "todomvc-tutorial",
"version": "0.0.1",
"description": "todomvc-tutorial",
"main": "main.js",
"scripts": {
"webpack-server": "webpack-dev-server --hot --inline --progress --colors --port 8000",
"start": "concurrently \"npm run webpack-server\" \"gulp watch\"",
"build": "set NODE_ENV=production && webpack -p --progress && gulp",
"postinstall": "bower install"
},
"author": "Deepak Grover",
"dependencies": {
"@appbaseio/reactivesearch": "^1.3.3",
"clipboard": "^1.7.1",
"fbemitter": "^2.1.1",
"jquery": "^3.1.1",
"md5": "^2.2.1",
"react": "15.4.2",
"react-addons-css-transition-group": "^15.4.0",
"react-bootstrap": "^0.30.5",
"react-codemirror": "^0.3.0",
"react-dom": "15.4.2",
"react-render-html": "^0.1.6",
"sass-loader": "^6.0.3"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.1.0",
"css-loader": "^0.26.1",
"file-loader": "^0.10.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-jshint": "^2.0.0",
"gulp-minify-css": "^1.2.4",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.1",
"gulp-uglify": "^2.0.0",
"json-loader": "^0.5.4",
"shebang-loader": "0.0.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
}
}