-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
50
51
52
53
{
"name": "Kinto-node",
"version": "1.0.0",
"description": "",
"main": "build/src/agent.js",
"types": "build/src/agent.d.ts",
"type": "module",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"start": "tsc && node --unhandled-rejections=strict ./build/src/agent.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.18.32",
"@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"
},
"dependencies": {
"@types/axios": "^0.14.0",
"axios": "^1.1.2",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"ipfs": "^0.65.0",
"loglevel": "^1.8.0",
"node": "^18.10.0",
"node-color-log": "^10.0.2",
"node-cron": "^3.0.0",
"os": "^0.1.2",
"path": "^0.12.7",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}