This repository was archived by the owner on Aug 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
66 lines (66 loc) · 1.47 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
{
"name": "rainbow-token-list",
"author": "Michael Demarais",
"version": "1.2.2",
"license": "MIT",
"private": true,
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build && node dist",
"test": "tsdx test --passWithNoTests",
"lint": "eslint . --ext js,ts,jsx,tsx",
"prepare": "yarn build"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/degit": "^2.8.0",
"@types/lodash": "^4.14.179",
"@types/mkdirp": "^1.0.1",
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"eslint": "^7.32.0",
"eslint-config-rainbow": "^2.0.0",
"eslint-plugin-jest": "^24.5.2",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.4.4"
},
"dependencies": {
"@ethersproject/address": "^5.5.0",
"degit": "^2.8.0",
"get-svg-colors": "^1.5.1",
"lodash": "^4.17.20",
"make-color-more-chill": "^0.2.0",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.1",
"pony-cause": "^1.0.0",
"undici": "^v5.4.0"
},
"resolutions": {
"typescript": "^4.0.3",
"ts-jest": "^27.0.5",
"jest": "^27.0.0"
}
}