-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.08 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.08 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "node-ict",
"version": "1.0.0",
"description": "An client-server solution for interactive course teaching made with Node and Vue JS",
"main": "app.js",
"repository": "https://github.com/jannesbrunner/node-ict",
"author": "jannesbrunner <jannes.brunner@student.htw-berlin.de>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js",
"postinstall": "yarn run buildPresenterClient && yarn run buildTeacherClient && yarn run buildStudentClient",
"buildPresenterClient": "browserify ./public/client/js/presenter/dev.js > ./public/client/js/presenter/index.js",
"buildTeacherClient": "browserify ./public/client/js/teacher/dev.js > ./public/client/js/teacher/index.js",
"buildStudentClient": "browserify ./public/client/js/student/dev.js > ./public/client/js/student/index.js",
"buildClients": "yarn run buildPresenterClient && yarn run buildTeacherClient && yarn run buildStudentClient"
},
"browser": {
"vue": "vue/dist/vue.common.js"
},
"devDependencies": {
"browserify": "^16.3.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.2",
"get-google-fonts": "^1.2.0",
"nodemon": "^1.19.0",
"yarn": "^1.17.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"connect-session-sequelize": "^6.0.0",
"cookie-parser": "^1.4.4",
"d3": "^5.9.2",
"express": "^4.16.4",
"express-session": "^1.16.1",
"express-socket.io-session": "^1.3.5",
"generate-password": "^1.4.2",
"ip": "^1.1.5",
"jquery": "^3.4.1",
"mysql2": "^1.6.5",
"node-flags": "^0.1.9",
"node-hotspot": "^0.1.7",
"open": "^6.4.0",
"popper.js": "^1.15.0",
"pug": "^2.0.3",
"qrcode": "^1.4.1",
"sequelize": "^5.8.6",
"session.socket.io": "^0.2.1",
"socket.io": "^2.4.0",
"socket.io-express-session": "^0.1.3",
"sqlite3": "^4.0.8",
"sweetalert2": "^8.13.0",
"vue": "^2.6.10",
"vuewordcloud": "^18.7.11",
"winston": "^3.2.1",
"wordcloud": "^1.1.0",
"zingchart": "^2.8.6"
}
}