-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 870 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
30
31
32
{
"name": "exx-tracker-backend",
"version": "0.1.0",
"description": "exercise tracker app with MERN&Typescript",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"start:dev": "ts-node server.ts",
"tsc": "./node_modules/typescript/bin/tsc",
"heroku-postbuild":"tsc",
"deploy": "git add . && git commit -m Heroku && git push heroku master"
},
"author": "KDT",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.5",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1"
}
}