-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.49 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": "nance",
"version": "1.0.0",
"description": "automated governance pipeliner",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"spec": "export LOCAL_DB=1 && jest",
"test": "export LOCAL_DB=1 && jest ./test/api/setup/order.test.ts",
"dev": "node scripts/dev.js",
"db:setup": "cd src/dolt/local && ./test_setup.sh",
"db:local": "dolt sql-server --data-dir ./src/dolt/local/databases",
"clean": "rm -rf node_modules && rm -rf dist",
"freshen": "npm run clean && npm install",
"build:api": "node scripts/build.js && npm run build:docs",
"build:docs": "node scripts/docs.js",
"build:scheduler": "esbuild src/scheduler/index.ts --platform=node --bundle --minify --packages=external --target=node20 --outfile=dist/scheduler/index.js",
"start:api": "node ./dist/index.js",
"start:scheduler": "node ./dist/scheduler/index.js",
"dolt-client": "source .env && mysql -h$DOLT_HOST -u$DOLT_USER -p$DOLT_PASSWORD"
},
"overrides": {
"whatwg-url": "^14.0.0"
},
"dependencies": {
"@ethersproject/providers": "^5.7.2",
"@nance/nance-sdk": "^4.1.6",
"@safe-global/api-kit": "^2.5.1",
"@snapshot-labs/snapshot.js": "^0.11.41",
"axios": "^1.7.2",
"common-tags": "^1.8.2",
"cors": "^2.8.5",
"diff": "^7.0.0",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"ethers": "^5.6.9",
"express": "^4.18.1",
"form-data": "^4.0.0",
"graphql-request": "^4.2.0",
"lodash": "^4.17.21",
"mysql2": "^3.10.3",
"next-auth": "^4.24.7",
"node-schedule": "^2.1.1",
"promise-retry": "^2.0.1",
"uuid": "^9.0.0",
"viem": "^2.9.19",
"winston": "^3.13.1"
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/cors": "^2.8.12",
"@types/diff": "^6.0.0",
"@types/express": "^4.17.14",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.198",
"@types/node": "^17.0.26",
"@types/node-schedule": "^2.1.7",
"@types/promise-retry": "^1.1.4",
"@types/supertest": "^6.0.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"esbuild": "^0.23.1",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"tsconfig-paths": "^4.2.0",
"tspec": "^0.1.116",
"tsx": "^4.19.0",
"typescript": "^5.6.3"
}
}