-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
103 lines (103 loc) · 2.8 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
102
103
{
"name": "codeboard",
"description": "Codeboard, the web-based IDE for the classroom. Core of the codeboard.io project.",
"version": "0.1.0",
"contributors": [
{
"name": "H.-Christian Estler",
"email": "[email protected]"
},
{
"name": "Martin Nordio",
"email": "[email protected]"
}
],
"scripts": {
"start": "grunt serve",
"build": "grunt build",
"testClient": "grunt test:client",
"testServer": "grunt test:server"
},
"repository": {
"type": "git",
"url": "git://github.com/codeboardio/codeboard.git"
},
"dependencies": {
"bluebird": "2.2.2",
"body-parser": "1.3.0",
"compression": "1.1.0",
"connect-busboy": "0.0.1",
"connect-mongo": "git://github.com/haches/connect-mongo",
"cookie-parser": "1.3.3",
"ejs": "0.8.4",
"express": "4.5.1",
"express-session": "1.6.4",
"express-validator": "2.3.0",
"gm": "1.9.0",
"http-proxy": "1.11.2",
"lodash": "3.3.1",
"mongoose": "3.8.8",
"mysql": "2.3.2",
"nodemailer": "1.3.4",
"oauth-signature": "1.1.3",
"passport": "0.2.0",
"passport-local": "0.1.6",
"request": "2.40.0",
"sequelize": "2.1.3"
},
"devDependencies": {
"chai": "3.4.1",
"connect-livereload": "0.3.0",
"expect.js": "0.3.1",
"grunt": "0.4.5",
"grunt-autoprefixer": "3.0.3",
"grunt-concurrent": "2.1.0",
"grunt-contrib-clean": "0.7.0",
"grunt-contrib-coffee": "0.13.0",
"grunt-contrib-compass": "1.0.4",
"grunt-contrib-concat": "0.5.1",
"grunt-contrib-copy": "0.8.2",
"grunt-contrib-cssmin": "0.14.0",
"grunt-contrib-htmlmin": "0.6.0",
"grunt-contrib-imagemin": "1.0.0",
"grunt-contrib-jshint": "0.11.3",
"grunt-contrib-uglify": "0.11.0",
"grunt-contrib-watch": "0.6.1",
"grunt-env": "0.4.4",
"grunt-express-server": "0.5.1",
"grunt-google-cdn": "0.4.3",
"grunt-karma": "0.12.1",
"grunt-mocha-test": "0.12.7",
"grunt-newer": "1.1.1",
"grunt-ng-annotate": "1.0.1",
"grunt-node-inspector": "0.4.1",
"grunt-nodemon": "0.4.1",
"grunt-open": "0.2.3",
"grunt-rev": "0.1.0",
"grunt-svgmin": "3.1.0",
"grunt-usemin": "3.1.1",
"istanbul": "0.3.2",
"jshint-stylish": "0.1.3",
"karma": "0.13.16",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.2.2",
"karma-coffee-preprocessor": "0.3.0",
"karma-coverage": "0.5.3",
"karma-firefox-launcher": "0.1.7",
"karma-html2js-preprocessor": "0.1.0",
"karma-mocha": "0.2.1",
"karma-ng-html2js-preprocessor": "0.2.0",
"load-grunt-tasks": "0.2.0",
"mocha": "2.0.1",
"open": "0.0.4",
"requirejs": "2.1.10",
"protractor": "1.4.0",
"should": "2.1.0",
"supertest": "0.8.2",
"time-grunt": "0.2.1"
},
"engines": {
"node": ">=0.12.x"
},
"license": "MIT"
}