-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 917 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
34
35
{
"name": "node-api-users",
"version": "1.0.0",
"description": "Node api microservice for user resource",
"author": "Filippo Sallemi <[email protected]>",
"main": "src/index.ts",
"scripts": {
"dev": "ts-node-dev --respawn --pretty --transpile-only src/index.ts"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.5",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"save": "^2.4.0",
"sequelize": "^6.6.5",
"ts-node": "^10.1.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.4",
"@types/node": "^16.4.10",
"@types/sequelize": "^4.28.10",
"ts-node-dev": "^1.1.8",
"typedoc": "^0.21.5",
"typescript": "^4.3.5"
}
}