forked from ensdomains/ens-metadata-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.21 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
79
80
81
82
83
{
"name": "ens-metadata-service",
"version": "1.0.0",
"main": "index.js",
"author": "Makoto Inoue <2630+makoto@users.noreply.github.com>",
"license": "MIT",
"engines": {
"node": ">=16"
},
"dependencies": {
"@ensdomains/ens-avatar": "^0.1.4",
"@ensdomains/ens-validation": "^0.1.0",
"@ensdomains/eth-ens-namehash": "^2.0.15",
"@types/lodash": "^4.14.170",
"btoa": "^1.2.1",
"canvas": "^2.8.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dompurify": "^2.3.3",
"dotenv": "^10.0.0",
"ethers": "^5.3.0",
"express": "^4.17.1",
"google-auth-library": "^7.11.0",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"is-svg": "^4.3.2",
"jsdom": "^19.0.0",
"lodash": "^4.17.21",
"multiformats": "^9.4.8",
"redoc-express": "^1.0.0",
"tsc": "^2.0.3",
"web3": "^1.3.6"
},
"scripts": {
"build": "tsc --project ./ && cpx 'src/assets/**' 'dist/assets'",
"dev": "ENV=local ts-node-dev --inspect -- src/index.ts",
"start": "node dist/index.js",
"deploy": "ENV=prod yarn build && gcloud app deploy --project=ens-metadata-service",
"deploy:test": "ENV=prod yarn build && gcloud app deploy --no-promote --project=ens-metadata-service",
"test": "ava -v --serial",
"test:cov": "nyc --reporter=json --reporter=text ava --serial",
"docgen": "node docgen.js"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.10",
"@types/dompurify": "^2.3.1",
"@types/express": "^4.17.12",
"@types/jsdom": "^16.2.13",
"@types/node": "^15.12.2",
"@types/node-fetch": "^2.5.11",
"@types/test-listen": "^1.1.0",
"ava": "^3.15.0",
"cpx": "^1.5.0",
"got": "^11.8.2",
"nock": "^13.1.1",
"nyc": "^15.1.0",
"swagger-autogen": "^2.18.8",
"test-listen": "^1.1.0",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.5.2"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/**/*",
"!test/entry.mock.ts",
"!test/interface.ts"
],
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"volta": {
"node": "16.13.0"
}
}