-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.05 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.05 KB
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
{
"name": "chaindexing",
"private": true,
"scripts": {
"postgres": "pnpm --filter @chaindexing/postgres",
"config": "pnpm --filter @chaindexing/config",
"repos": "pnpm --filter @chaindexing/repos",
"build": "pnpm --recursive build",
"build:clean": "pnpm --recursive exec -- rm -rf dist",
"build:pg": "cd chaindexing-postgres && pnpm build",
"dev": "pnpm --recursive --parallel --stream dev",
"dev:pg": "cd chaindexing-postgres && pnpm dev",
"start:pg": "cd chaindexing-postgres && pnpm start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testMatch='**/__tests__/integration.test.ts'",
"test:unit": "jest --config jest.config.unit.js",
"test:setup": "SETUP_TEST_DB=true jest --runInBand",
"setup-db": "ts-node scripts/setup-test-db.ts",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"lint:strict": "eslint . --ext .ts,.tsx --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"ci": "npm run lint:strict && npm run format:check && npm run type-check && npm run test:unit && npm run test:integration",
"outdated": "npm outdated"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.4.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chai": "^4.3.10",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^30.0.5",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/node-fetch": "^2.6.12",
"@types/pg": "^8.15.4",
"dotenv": "^17.2.0",
"drizzle-orm": "^0.44.3",
"glob": "^11.0.3",
"node-fetch": "^3.3.2",
"pg": "^8.16.3"
}
}