-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "Kinto Network Node service",
"version": "0.0.0",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"start": "tsc && node ./build/src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.14",
"@types/node": "^14.11.2",
"@types/node-cron": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"gts": "^3.1.1",
"typescript": "~4.7.0"
},
"dependencies": {
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"node": "^18.10.0",
"node-color-log": "^10.0.2",
"node-cron": "^3.0.2",
"redis": "^4.3.1",
"redis-om": "^0.3.6",
"ts-node": "^10.9.1"
}
}