forked from codeboardio/codeboard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3 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
104
105
106
107
108
109
{
"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": "node server.js",
"startDev": "grunt serve",
"build": "grunt build",
"testClient": "grunt test:client",
"testServer": "grunt test:server"
},
"repository": {
"type": "git",
"url": "git://github.com/zhaw-iwi/codeboard"
},
"dependencies": {
"@azure/openai": "^1.0.0-beta.11",
"bluebird": "3.7.1",
"body-parser": "^1.19.0",
"busboy": "^0.3.1",
"compression": "^1.7.4",
"connect-mongo": "^3.1.0",
"cookie-parser": "^1.4.4",
"ejs": "0.8.4",
"express": "^4.17.1",
"express-session": "^1.17.0",
"express-validator": "^6.2.0",
"gm": "^1.23.1",
"grunt-babel": "8.0.0",
"http-proxy": "1.18.0",
"lodash": "^4.17.15",
"mongoose": "5.7.0",
"mysql": "^2.17.1",
"mysql2": "^3.11.3",
"nodemailer": "1.3.4",
"oauth-signature": "1.1.3",
"passport": "0.2.1",
"passport-local": "1.0.0",
"request": "^2.88.0",
"sequelize": "5.21.3"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@types/express": "^4.17.11",
"babel-plugin-angularjs-annotate": "^0.10.0",
"chai": "3.4.1",
"connect-livereload": "0.3.0",
"expect.js": "0.3.1",
"grunt": "^1.0.4",
"grunt-autoprefixer": "3.0.3",
"grunt-concurrent": "2.1.0",
"grunt-contrib-clean": "0.7.0",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-compass": "1.0.4",
"grunt-contrib-concat": "0.5.1",
"grunt-contrib-copy": "0.8.2",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-htmlmin": "^3.1.0",
"grunt-contrib-imagemin": "^3.1.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-env": "^1.0.1",
"grunt-express-server": "0.5.1",
"grunt-karma": "^3.0.2",
"grunt-mocha-test": "0.12.7",
"grunt-newer": "1.1.1",
"grunt-ng-annotate": "1.0.1",
"grunt-nodemon": "0.4.1",
"grunt-open": "^0.2.4",
"grunt-rev": "0.1.0",
"grunt-svgmin": "^6.0.0",
"grunt-usemin": "3.0.0",
"jshint-stylish": "0.1.3",
"karma": "4.3.0",
"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": "^5.1.0",
"mocha": "^6.2.2",
"open": "^6.4.0",
"protractor": "^6.0.0",
"requirejs": "2.1.10",
"should": "2.1.0",
"supertest": "4.0.2",
"time-grunt": "^1.4.0"
},
"engines": {
"node": ">=0.12.x"
},
"license": "MIT"
}