-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 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
39
{
"name": "tweet-fleet",
"scripts": {
"build": "turbo run build",
"build:dev": "turbo run build:dev",
"build:clean": "turbo run build:clean",
"test:unit": "turbo run test:unit:run --concurrency 5",
"test:integration": "turbo run test:integration:run --concurrency 5",
"lint": "turbo run lint --concurrency 5",
"lint:fix": "turbo run lint:fix"
},
"devDependencies": {
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"dotenv-cli": "7.4.1",
"esbuild": "0.20.2",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"prettier": "3.2.5",
"ts-node": "10.9.2",
"turbo": "1.13.3",
"typescript": "5.4.5",
"vitest": "1.5.3"
},
"volta": {
"node": "20.10.0"
},
"engines": {
"node": "20.10.0"
},
"workspaces": [
"app",
"infra"
]
}