forked from victormimo/open-captable-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.4 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
{
"name": "open-captable-protocol",
"version": "1.0.0-alpha.0",
"private": true,
"author": "Alex Palmer, Victor Mimo",
"license": "MIT",
"description": "Transfer Agent Protocol onchain cap table",
"type": "module",
"scripts": {
"t": "npx tsx src/test.mjs",
"prod": "npx tsx src/app.js",
"dev": "npx tsx watch src/app.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": "npx 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",
"validate-poet-files": "cd ocf && yarn validate-poet-files",
"export-manifest": "cd src/db/samples && zip -r fairmint.zip fairmint && mv fairmint.zip $HOME/Downloads"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"axios": "^1.4.0",
"big.js": "^6.2.1",
"busboy": "^1.6.0",
"date-fns": "^2.28.0",
"dotenv": "^16.3.1",
"ethers": "^6.7.1",
"exceljs": "^4.4.0",
"express": "^4.18.2",
"joi": "^17.13.1",
"mongoose": "^7.4.2",
"npx": "^10.2.2",
"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": {
"@eslint/js": "^9.7.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/uuid": "^9.0.2",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.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"
},
"main": "jest.config.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Fairmint/open-captable-protocol.git"
},
"bugs": {
"url": "https://github.com/Fairmint/open-captable-protocol/issues"
},
"homepage": "https://github.com/Fairmint/open-captable-protocol#readme"
}