-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "tachi",
"version": "2.5.2",
"private": true,
"description": "The root of the Tachi monorepo. Contains common utils like linters.",
"scripts": {
"build": "pnpm -r build",
"sync-database": "pnpm --filter ./server sync-database",
"start-score-import-worker": "pnpm --filter ./server runscoreworker"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zkrising/Tachi.git"
},
"author": "zk",
"license": "SEE LICENSE IN EACH PACKAGE",
"bugs": {
"url": "https://github.com/zkrising/Tachi/issues"
},
"homepage": "https://github.com/zkrising/Tachi#readme",
"devDependencies": {
"@types/node": "18.11.18",
"@types/tap": "15.0.3",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"eslint": "8.18.0",
"eslint-plugin-cadence": "0.1.0",
"tap": "workspace:./vendor/tap",
"ts-node": "10.9.1",
"tsc-alias": "1.7.1",
"typescript": "4.9.4"
},
"peerDependencies": {
"@types/bson": "1.0.11",
"@types/mongodb": "3.6.20",
"@types/node": "16.11.7",
"mongodb": "3.6.3"
},
"pnpm": {
"overrides": {
"@types/mongodb": "3.6.20",
"@types/bson": "1.0.11",
"@types/node": "18.11.18",
"@types/express-serve-static-core": "4.17.29",
"@types/express": "4.17.13",
"ts-node": "10.9.1",
"mongodb": "3.6.3"
},
"patchedDependencies": {
"@types/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"engines": {
"node": "20",
"pnpm": "8"
}
}