forked from crustio/crust-smanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.19 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "crust-smanager",
"version": "1.0.3",
"description": "A storage manager integrated with Crust, IPFS and sWorker(storage inspector) of Crust protocol.",
"main": "build/src/main.js",
"repository": "https://github.com/crustio/crust-smanager.git",
"author": "Zikun Fan <kun@crust.network>",
"engines": {
"node": ">= 14.16 <15"
},
"dependencies": {
"@crustio/type-definitions": "1.3.0",
"@polkadot/api": "4.2.2-4",
"@types/seedrandom": "^2.4.28",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"bluebird": "^3.7.2",
"dayjs": "^1.10.6",
"fs-extra": "^9.1.0",
"ipfs-http-client": "^48.1.3",
"joi": "^17.4.1",
"lodash": "^4.17.20",
"native-abort-controller": "^0.0.3",
"node-cron": "^2.0.3",
"node-fetch": "npm:@achingbrain/node-fetch@^2.6.7",
"querystring": "^0.2.1",
"seedrandom": "^3.0.5",
"sequelize": "^6.6.5",
"sqlite": "^4.0.23",
"sqlite3": "^5.0.2",
"tslib": "~2.3.0",
"umzug": "^3.0.0-beta.16",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bignumber.js": "^5.0.0",
"@types/bluebird": "^3.5.36",
"@types/fs-extra": "^9.0.12",
"@types/jest": "~26.0.23",
"@types/lodash": "^4.14.164",
"@types/node": "^14.14.6",
"@types/node-cron": "^2.0.3",
"@types/validator": "^13.6.3",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "~4.28.2",
"@typescript-eslint/parser": "~4.28.2",
"cross-env": "^7.0.3",
"eslint": "~7.30.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~24.3.6",
"jest": "~27.0.6",
"prettier": "~2.3.2",
"rimraf": "~3.0.2",
"ts-jest": "~27.0.3",
"ts-node": "^9.1.1",
"tsutils": "~3.21.0",
"typescript": "~4.3.5"
},
"scripts": {
"start": "cross-env NODE_ENV=production node build/src/main.js",
"clean": "rimraf coverage build tmp",
"dev": "ts-node src/main.ts",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"license": "Apache-2.0",
"volta": {
"node": "14.16.1"
}
}