-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.53 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
{
"name": "tap-cap-table",
"version": "1.0.0",
"private": true,
"author": "thatalexpalmer.eth",
"license": "MIT",
"description": "Transfer Agent Protocol onchain cap table",
"type": "module",
"scripts": {
"prod": "tsx src/server.js --no-poller",
"prod-poller": "tsx src/entry.ts --finalized-only",
"dev": "tsx watch src/server.js",
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache --fix",
"lint": "yarn run eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier '**/*' --ignore-unknown --write",
"typecheck": "concurrently --raw yarn:typecheck:*",
"typecheck:app": "tsc --noEmit",
"prepare": "husky install",
"deploy-factory": "./scripts/deployFactory.sh",
"setup": "cd chain && foundryup && forge build --via-ir",
"deseed": "tsx src/db/scripts/deseed.js",
"test": "cd chain && forge test",
"test-js": "jest --testPathPattern src/tests/unit",
"test-js-integration": "jest --testPathPattern src/tests/integration",
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"axios": "^1.4.0",
"busboy": "^1.6.0",
"date-fns": "^2.28.0",
"dd-trace": "^5.8.0",
"dotenv": "^16.3.1",
"ethers": "^6.11.1",
"express": "^4.18.2",
"mongoose": "^7.4.2",
"npx": "^10.2.2",
"p-retry": "^6.2.0",
"solc": "^0.8.20",
"tsx": "^4.7.0",
"xstate": "^4.38.2",
"yauzl": "^2.10.0"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.1",
"@babel/plugin-syntax-import-assertions": "^7.24.1",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-flow": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/uuid": "^9.0.2",
"eslint": "^8.21.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"solhint": "^3.4.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"uuid": "^9.0.0"
}
}