-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 2.01 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
{
"name": "DIL",
"version": "0.0.0",
"private": true,
"scripts": {
"watch": "nodemon ./bin/www",
"start": "node ./bin/www",
"watch:canvas": "watchify public/src/work/index.js -t [ babelify ] -o public/js/workCanvas.js -v",
"watch:frontend": "webpack --watch",
"build:book": "./build-book.sh",
"build:book:style": "sass public/sass/book/index.scss:public/css/book.css"
},
"dependencies": {
"asap": "^2.0.6",
"async": "^2.5.0",
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"babelify": "^7.3.0",
"backbone": "^1.3.3",
"body-parser": "^1.17.2",
"browserify": "^14.4.0",
"concat-stream": "^1.6.0",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"css-loader": "^0.28.4",
"debug": "^2.6.8",
"event-emitter": "^0.3.5",
"events": "^1.1.1",
"express": "^4.15.3",
"express-session": "^1.15.3",
"extract-text-webpack-plugin": "^3.0.0",
"glob": "^7.1.2",
"handlebars": "^4.0.10",
"handlebars-loader": "^1.5.0",
"http-server": "^0.10.0",
"ignore-loader": "^0.1.2",
"jade": "^1.11.0",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"moment": "^2.18.1",
"mongoose": "^4.11.1",
"morgan": "^1.8.2",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"readline": "^1.3.0",
"rss": "^1.2.2",
"sass": "^1.0.0-beta.1",
"sass-loader": "^6.0.6",
"semver": "^5.3.0",
"serve-favicon": "^2.4.3",
"sha1": "^1.1.1",
"sharp": "^0.18.2",
"style-loader": "^0.18.2",
"uglify-js": "^3.0.24",
"util": "^0.10.3",
"webpack": "^3.2.0"
},
"devDependencies": {
"watchify": "^3.9.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.1.0",
"babel-eslint": "^7.2.3"
}
}