-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.01 KB
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": "note-service",
"version": "1.0.0",
"main": "src/statup.js",
"license": "UNLICENSED",
"scripts": {
"start:dev": "ts-node-dev src/startup.ts",
"start": "ts-node src/startup.ts",
"build": "tsc"
},
"dependencies": {
"@grpc/grpc-js": "^1.5.3",
"@grpc/proto-loader": "^0.6.9",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^17.0.8",
"fast-sha256": "^1.3.0",
"fastify": "^3.23.1",
"fastify-cookie": "^5.5.0",
"fastify-cors": "^6.0.2",
"fastify-file-upload": "^3.0.1",
"fastify-multipart": "^5.3.1",
"fastify-plugin": "^3.0.0",
"fastify-static": "^4.5.0",
"inversify": "^5.1.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1",
"redis": "^4.0.3",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"tweetnacl-util": "^0.15.1",
"typeorm": "^0.2.41",
"typescript": "^4.5.4"
}
}