-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "backend-animeover",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npm run fb:init && nodemon -x ts-node src/main.ts",
"start": "npm run fb:init && node ./build/main.js",
"generate": "tsoa swagger && tsoa routes",
"fb:init": "node ./keys/firebase/init.js",
"build": "npm run fb:init && tsc --build",
"heroku-postbuild": "npm run build",
"vercel-build": "npm run fb:init && echo was deployed"
},
"author": "",
"license": "ISC",
"dependencies": {
"@firebase/app-types": "^0.6.1",
"@types/request-promise": "^4.1.47",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^8.2.9",
"firebase-admin": "^9.5.0",
"node-fetch": "^2.6.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"swagger-ui-express": "^4.1.6",
"ts-node": "^9.1.1",
"tsoa": "^3.5.2",
"typescript": "^4.1.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.11",
"@types/node": "^14.14.31",
"@types/swagger-ui-express": "^4.1.4",
"cpy-cli": "^3.1.1",
"nodemon": "^2.0.7"
}
}