-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.9 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
75
76
77
78
{
"name": "clubs-kyc",
"version": "1.0.0",
"type": "module",
"description": "Clubs KYC Service",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"test": "ava || echo 'Skip'",
"pretest": "tsc",
"prebuild": "rimraf dist",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts,.js --fix",
"lint:format": "prettier --write '**/*.{ts,js,json,md,yml}'",
"typecheck": "astro check && tsc --noEmit",
"prepare": "husky install",
"createRedisSchema": "node ./scripts/createRedisSchema.mjs"
},
"author": "Dev Protocol",
"license": "MPL-2.0",
"dependencies": {
"@astrojs/vercel": "^8.0.0",
"@devprotocol/dev-kit": "8.7.0",
"@devprotocol/util-ts": "4.0.0",
"astro": "^5.0.0",
"bignumber.js": "^9.1.2",
"cross-fetch": "^4.0.0",
"ethers": "^6.7.1",
"node-fetch": "^3.3.2",
"ramda": "0.30.1",
"redis": "^4.6.8",
"uuid": "^11.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.0",
"@ava/typescript": "5.0.0",
"@types/dotenv": "8.2.3",
"@types/node": "22.10.2",
"@types/ramda": "0.30.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"@vercel/node": "^5.0.0",
"ava": "6.2.0",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-functional": "6.6.3",
"husky": "9.1.7",
"prettier": "3.4.2",
"rimraf": "5.0.10",
"type-fest": "^4.3.1",
"typescript": "5.7.2"
},
"ava": {
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"/": "dist/"
},
"compile": false
}
},
"private": true,
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dev-protocol/clubs-kyc.git"
},
"bugs": {
"url": "https://github.com/dev-protocol/clubs-kyc/issues"
},
"homepage": "https://github.com/dev-protocol/clubs-kyc#readme"
}