-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "bucketeer",
"scripts": {
"build": "turbo run build",
"build:dev": "turbo run build:dev",
"build:clean": "turbo run build:clean",
"start:dev": "turbo run start:dev",
"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.14.12",
"@types/node-cron": "3.0.11",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"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",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.7",
"eslint-plugin-vue": "9.26.0",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"turbo": "2.0.9",
"typescript": "5.5.4",
"vitest": "2.0.4"
},
"volta": {
"node": "20.14.0",
"npm": "10.8.2"
},
"engines": {
"node": "20.14.0"
},
"workspaces": [
"apps/*",
"common/*"
],
"packageManager": "npm@10.8.2",
"dependencies": {
"node-cron": "3.0.3",
"sharp": "0.33.4"
}
}