-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.22 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
{
"name": "class",
"version": "0.1.0",
"description": "Classroom management tool",
"author": "Neel Mehta",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/DigitalLiteracyProject/class.git"
},
"dependencies": {
"jquery": "~2.1.3",
"lodash": "^3.10.1",
"react": "~0.13.1",
"react-bootstrap": "^0.24.3",
"react-router": "~0.13.2",
"react-router-bootstrap": "^0.18.1",
"reflux": "~0.2.7",
"socket.io": "^1.3.6",
"socket.io-client": "^1.3.6"
},
"devDependencies": {
"babel-core": "^5.8.3",
"babel-loader": "^5.3.2",
"browser-sync": "^2.8.0",
"compression": "^1.5.1",
"del": "^1.2.0",
"express": "^4.13.1",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-changed": "^1.2.1",
"gulp-filesize": "0.0.6",
"gulp-filter": "^2.0.2",
"gulp-gh-pages": "^0.5.2",
"gulp-htmlmin": "~1.1.3",
"gulp-iconfont": "^3.0.3",
"gulp-if": "~1.2.5",
"gulp-imagemin": "^2.3.0",
"gulp-minify-css": "^1.2.0",
"gulp-notify": "^2.2.0",
"gulp-nunjucks-render": "^0.2.1",
"gulp-rename": "^1.2.2",
"gulp-rev": "^5.1.0",
"gulp-rev-replace": "^0.4.2",
"gulp-sass": "^2.0.4",
"gulp-sequence": "^0.4.0",
"gulp-sizereport": "^1.1.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-svgstore": "^5.0.3",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.3",
"karma": "0.13.2",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "0.1.0",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-nyan-reporter": "0.2.1",
"karma-sinon-chai": "^1.0.0",
"karma-webpack": "1.7.0",
"merge-stream": "^0.1.8",
"mocha": "^2.2.5",
"morgan": "^1.6.1",
"object-assign": "^3.0.0",
"open": "0.0.5",
"pretty-hrtime": "~1.0.0",
"require-dir": "^0.3.0",
"vinyl-source-stream": "~1.1.0",
"webpack": "^1.10.1"
},
"engines": {
"node": "0.12.2",
"npm": "2.7.4"
},
"scripts": {
"postinstall": "bower install",
"build": "gulp build:production",
"deploy": "gulp deploy",
"start": "gulp build:production && gulp server",
"test": "gulp build:production && karma start --single-run",
"watch": "gulp"
}
}