-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 927 Bytes
/
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
{
"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 80",
"prestart": "npm run build",
"prebuild": "npm install && npm run check",
"build": "node build.js",
"check": "eslint app/resources/js/",
"deploy": "forever index.js ./app 9901",
"predeploy": "npm run build"
},
"author": "Jannik Wiese, Markus Schmidbauer, Annika Koehler",
"license": "MIT",
"dependencies": {
"chart.js": "^3.5.0",
"cors": "^2.8.5",
"eslint": "^7.30.0",
"express": "^4.17.1",
"hammerjs": "^2.0.8",
"spotify-web-playback": "^1.3.0"
}
}