-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.88 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
{
"name": "@citydao/token-query-tools",
"description": "",
"private": true,
"license": "UNLICENSED",
"version": "0.0.0",
"homepage": "https://github.com/citydaoproject/token-query-tools/wiki/Home",
"repository": {
"type": "git",
"url": "https://github.com/citydaoproject/token-query-tools"
},
"bugs": {
"url": "https://github.com/citydaoproject/token-query-tools/issues"
},
"scripts": {
"clean": "rm -rf dist && rm -rf out",
"build": "tsc",
"build:watch": "tsc --watch",
"rebuild": "npm run clean && npm run build",
"test": "jest",
"posttest": "npm run lint",
"lint": "eslint",
"pretty": "pretty-quick",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run lint"
}
},
"dependencies": {
"commander": "9.3.0",
"dotenv": "16.0.1",
"limiter": "2.1.0",
"moralis": "1.8.1"
},
"devDependencies": {
"@types/jest": "28.1.4",
"@types/node": "16.11.42",
"@typescript-eslint/eslint-plugin": "5.30.3",
"@typescript-eslint/parser": "5.30.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.19.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"jest": "28.1.2",
"moralis-admin-cli": "2.1.16",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"standard-version": "9.5.0",
"ts-jest": "28.0.5",
"ts-node": "10.8.1",
"tsutils": "3.21.0",
"typescript": "4.7.4"
},
"engines": {
"npm": ">=7.20",
"node": ">=16.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"issueUrlFormat": "https://github.com/citydaoproject/token-query-tools/issues/{{id}}",
"issuePrefixes": [
"#"
],
"scripts": {
"postchangelog": "npm run pretty"
}
}
}