forked from ufosc/Jukebox-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
{
"name": "spotify_app",
"version": "1.0.0",
"description": "App that connects to spotify API to do enable OSC members access to music",
"main": "server.js",
"scripts": {
"test": "npm run build && mocha --reporter spec --recursive",
"start": "node ./dist/swagger.js && node ./dist/src/server.js",
"dev": "nodemon -L -e ts --exec \"npm run build && node ./dist/src/swagger.js && npm start\"",
"build": "tsc",
"build:docker": "tsc --outDir /app/dist/src",
"swagger-autogen": "npm run build && node ./dist/src/swagger.js",
"config": "node utils/config.js",
"playground": "nodemon playground/server.js",
"docker-cli": "docker exec -it api sh",
"prod": "node dist/src/swagger.js && node dist/src/server.js"
},
"author": "",
"license": "ISC",
"mocha": {
"spec": "./dist/test"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^7.5.2",
"pg": "^8.10.0",
"querystring": "^0.2.1",
"request": "^2.88.2",
"swagger-autogen": "^2.23.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/pg": "^8.6.6",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"child_process": "^1.0.2",
"dedent-js": "^1.0.1",
"fs": "^0.0.1-security",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"prompt-sync": "^4.2.0",
"typescript": "^4.9.5",
"util": "^0.12.5"
}
}