-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1022 Bytes
/
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
{
"name": "btc-guessr",
"version": "1.0.0",
"scripts": {
"format": "turbo format",
"lint": "turbo lint",
"test": "turbo test",
"test:e2e": "turbo test:e2e",
"typecheck": "turbo typecheck",
"dev": "turbo dev --filter=@btc-guessr/transport --filter=frontend",
"build": "turbo build",
"deploy": "turbo deploy",
"bootstrap": "turbo bootstrap",
"deploy:website": "turbo deploy:website",
"deploy:without-hosting": "turbo deploy:without-hosting",
"destroy": "turbo run destroy"
},
"devDependencies": {
"@tsconfig/node18": "18.2.2",
"@tsconfig/strictest": "2.0.2",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "8.45.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"prettier": "3.0.3",
"turbo": "1.10.14",
"typescript": "5.0.2",
"tsx": "3.12.10"
},
"volta": {
"node": "18.18.0",
"pnpm": "8.7.6"
},
"engines": {
"node": "18.18.0"
}
}