-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "projekt-starter-mme-ws20",
"version": "1.0.0",
"description": "Startercode für die Abschlussprojekte des MME-Kurses im Wintersemester 2021",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js ./app 8000",
"dev": "nodemon index.js ./app 8000",
"prestart": "npm run build",
"prebuild": "npm install && npm run check",
"build": "node build.js",
"check": "eslint app/resources/js/",
"depoy": "forever index.js ./app 9901",
"predeploy": "npm run build"
},
"author": "Alexander Bazo <[email protected]>",
"license": "MIT",
"dependencies": {
"ejs": "^3.1.6",
"eslint": "^7.18.0",
"express": "^4.17.1",
"mongodb": "^3.6.4",
"mongoose": "^5.11.19",
"node-schedule": "^2.0.0",
"node-uuid": "^1.4.8",
"socket.io": "^3.1.2",
"socketio-file-upload": "^0.7.3"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}