-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 847 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
33
{
"name": "portfolio",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"build": "npx tsc",
"build:dev": "env-cmd -f .env.development npx tsc",
"start": "node dist/server.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/server.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0"
},
"dependencies": {
"bcrypt": "^5.0.1",
"concurrently": "^7.3.0",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.4"
}
}