generated from checkpoint-labs/checkpoint-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "@snapshot-labs/checkpoint-template",
"version": "1.0.0",
"description": "Checkpoint starter template",
"main": "dist/src/index.js",
"repository": "git@github.com:snapshot-labs/checkpoint-template.git",
"scripts": {
"lint": "eslint src/ test/ --ext .ts --fix",
"build": "tsc -p tsconfig.build.json",
"dev": "nodemon src/index.ts",
"start": "node dist/src/index.js",
"test": "jest"
},
"author": "Snapshot Labs",
"license": "MIT",
"dependencies": {
"@ethersproject/address": "^5.6.0",
"@ethersproject/bignumber": "^5.6.1",
"@snapshot-labs/checkpoint": "^0.1.0-beta.13",
"@snapshot-labs/sx": "^0.1.0-beta.13",
"@types/bn.js": "^5.1.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/mysql": "^2.15.21",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"starknet": "^4.13.1",
"uuid": "~9.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"jest-mock-extended": "^2.0.6",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}