-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "subid-backend",
"version": "0.7.0",
"description": "Sub.ID backend.",
"author": "DappForce contributors",
"license": "GPL-3.0-only",
"private": true,
"engines": {
"node": ">= 14"
},
"scripts": {
"start": "node ./build/src/index.js",
"dev": "export NODE_ENV=dev && nodemon ./build/src/index.js",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"sortCrowdloans": "node ./build/src/services/crowdloan/contributors.js",
"clean": "rimraf coverage build tmp",
"lint": "tsc --noEmit && eslint '*/**/*.{ts,tsx}' --quiet --fix",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@subsocial/config": "0.7.7",
"@types/bn.js": "^5.1.0",
"@types/bull": "^4.10.0",
"@types/connect-timeout": "^0.0.34",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/jsonabc": "^2.3.1",
"@types/multer": "^1.4.4",
"@types/node": "^10.14.10",
"@types/request-promise": "^4.1.46",
"eslint": "^8.14.0",
"nodemon": "^2.0.20",
"typescript": "^4.4.x"
},
"resolutions": {
"@polkadot/types": "^10.9.1",
"@polkadot/api": "^10.9.1"
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"@equilab/api": "^1.12.23",
"@isaacs/ttlcache": "^1.0.3",
"@kodadot1/uniquery": "^0.3.0-rc.0",
"@polkawallet/bridge": "0.1.3",
"@subsocial/api": "0.8.14",
"axios": "^0.26.0",
"bull": "^4.11.4",
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"dayjs": "^1.10.4",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"graphql": "^16.3.0",
"graphql-request": "^4.2.0",
"ioredis": "^5.3.2",
"lodash.isempty": "^4.4.0",
"multer": "^1.4.2",
"request-promise": "^4.2.5"
}
}