-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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": "flump",
"version": "1.18.0",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --cache-dir=.turbo",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"test:ui": "turbo run test:ui",
"test:e2e": "turbo run test:e2e",
"lint": "turbo run lint",
"format": "turbo run format",
"ts-coverage": "turbo run ts-coverage",
"prepare": "husky || npx -y husky",
"publish": "turbo run publish"
},
"dependencies": {
"env-cmd": "10.1.0",
"turbo": "2.3.3"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"commitlint": "19.6.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"rollup-plugin-node-polyfills": "0.2.1",
"type-coverage": "2.29.7",
"typescript": "5.7.2"
},
"engines": {
"node": ">=14.0.0",
"pnpm": ">=9",
"npm": "please-use-pnpm"
},
"pnpm": {
"overrides": {
"react": "19.0.0",
"react-dom": "19.0.0",
"typescript-coverage-report": "1.0.0",
"vite": "6.0.7"
}
}
}