forked from stamp-labs/stamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.05 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
{
"name": "stamp",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"lint:fix": "yarn lint --fix",
"lint": "eslint src/ test/ --ext .ts",
"typecheck": "tsc --noEmit",
"build": "tsc",
"dev": "nodemon src/index.ts",
"start": "node dist/src/index.js",
"start:test": "dotenv -e test/.env.test yarn dev",
"test": "PORT=3003 start-server-and-test 'yarn start:test' http://localhost:3003 'dotenv -e test/.env.test yarn jest'",
"test:integration": "dotenv -e test/.env.test yarn jest --runInBand --collectCoverage=false test/integration",
"test:e2e": "PORT=3003 start-server-and-test 'yarn start:test' http://localhost:3003 'dotenv -e test/.env.test jest --runInBand --collectCoverage=false test/e2e/'"
},
"dependencies": {
"@adraffy/ens-normalize": "^1.10.0",
"@aws-sdk/client-s3": "^3.352.0",
"@download/blockies": "^1.0.3",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@metamask/jazzicon": "^2.0.0",
"@self.id/core": "^0.3.0",
"@snapshot-labs/snapshot-metrics": "^1.4.1",
"@snapshot-labs/snapshot-sentry": "^1.5.5",
"@snapshot-labs/snapshot.js": "^0.12.28",
"@unstoppabledomains/resolution": "^9.2.2",
"axios": "^0.25.0",
"canvas": "^2.9.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"dotenv-cli": "^7.3.0",
"eslint": "^6.7.2",
"express": "^4.17.1",
"jsdom": "^19.0.0",
"node-fetch": "v2.7.0",
"nodemon": "^2.0.7",
"redis": "^4.6.10",
"sharp": "^0.30.1",
"starknet": "^6.11.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^28.1.0",
"@types/node": "^14.14.21",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^28.1.0",
"prettier": "^1.19.1",
"start-server-and-test": "^2.0.3",
"ts-jest": "^28.0.4"
}
}