-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.66 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
{
"name": "open-live-trivia-api",
"version": "1.0.0",
"description": "Server-side part of the Open Live Trivia project",
"main": "open-live-trivia-api",
"scripts": {
"dev": "SET NODE_ENV=development&SET GOOGLE_APPLICATION_CREDENTIALS=open-live-trivia-firebase-adminsdk-qwb0s-5637cc3ca2.json&nodemon -w src --exec babel-node src --presets babel-preset-env",
"build": "babel src -s -D -d open-live-trivia-api-dist --presets babel-preset-env",
"start": "NODE_ENV=production GOOGLE_APPLICATION_CREDENTIALS=open-live-trivia-firebase-adminsdk-qwb0s-5637cc3ca2.json pm2 start open-live-trivia-api-dist -l ~/logs/open-live-trivia-api.log --time",
"prestart": "npm run -s build",
"test": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/radusalagean/open-live-trivia-api.git"
},
"author": "Radu Salagean <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/radusalagean/open-live-trivia-api/issues"
},
"homepage": "https://github.com/radusalagean/open-live-trivia-api#readme",
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"convert-svg-to-png": "^0.5.0",
"express": "^4.17.1",
"firebase-admin": "^8.2.0",
"geopattern": "^1.2.3",
"http-status-codes": "^1.3.2",
"mkdirp": "^0.5.1",
"mongoose": "^5.6.1",
"mongoose-unique-validator": "^2.0.3",
"randomcolor": "^0.5.4",
"socket.io": "^2.2.0",
"socketio-auth": "^0.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"eslint": "^6.0.1",
"nodemon": "^1.19.1"
}
}