-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "onestep-server",
"version": "1.0.0",
"description": "OneStep NodeJS-ExpressJS-Firebase server",
"main": "index.js",
"repository": "https://github.com/OneStep-elecTRON/onestep-server.git",
"author": "Aadarsh <aadarsh-s@outlook.com>",
"license": "MIT",
"engines": {
"node": "12.18.3"
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.9.2",
"firebase": "^8.2.5",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.14",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/express-validator": "^3.0.0",
"@types/firebase": "^3.2.1",
"@types/jsonwebtoken": "^8.5.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1"
},
"scripts": {
"start": "node dist/index.js",
"postinstall": "tsc",
"watch-node": "nodemon dist/index.js",
"watch-ts": "tsc -w",
"deploy": "git add . && git commit -m Heroku && git push heroku main"
}
}