-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 974 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 974 Bytes
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
{
"name": "bytes-store",
"version": "1.0.0",
"description": "bytes store",
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/debug": "^4.1.5",
"nodemon": "^2.0.12",
"prettier": "2.0.5",
"source-map-support": "^0.5.19"
},
"dependencies": {
"@types/ioredis": "^4.26.4",
"@types/node": "^15.12.1",
"body-parser": "^1.18.1",
"cors": "^2.8.5",
"dotenv": "^9.0.0",
"dtsgenerator": "^3.12.1",
"express": "^4.15.4",
"express-rate-limit": "^5.2.6",
"frisbee": "^3.1.4",
"ioredis": "^4.27.5",
"jayson": "^3.6.1",
"reflect-metadata": "^0.1.10",
"ts-node": "3.3.0",
"typescript": "4.2.3"
},
"scripts": {
"postinstall": "./node_modules/.bin/dtsgen openapi.yaml > src/openapi/api.ts",
"lint": "npx prettier --write .",
"dev": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/index.ts\"",
"start": "ts-node src/index.ts"
}
}