-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.99 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"version": "0.0.0",
"name": "spon",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build --filter=@spon/web",
"build-panda": "turbo build --filter=@spon/ui",
"analyze": "ANALYZE=true turbo build --filter=@spon/web",
"start": "turbo start --filter=@spon/web",
"dev": "turbo dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"clean": "turbo clean; rm -rf node_modules",
"new:component": "turbo gen component",
"new:fn": "turbo gen fn",
"new:hook": "turbo gen hook",
"new:page": "turbo gen page",
"sync:tokens": "turbo gen tokens",
"new:context": "turbo gen context",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run --passWithNoTests",
"e2e:ci": "CI='true' npm run e2e:run",
"e2e:ui": "turbo e2e:ui",
"e2e:run": "turbo e2e:run",
"changeset": "npx changeset-conventional-commits",
"panda": "turbo panda",
"codegen": "turbo codegen",
"prepare": "husky; npm run codegen; cd packages/styled-system; npm run init; cd ../ui; npm run build-panda"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@spon/eslint-config": "*",
"@spon/typescript-config": "*",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@turbo/gen": "^2.1.2",
"@types/lint-staged": "^13.3.0",
"@vitest/ui": "^2.1.1",
"commitlint": "^19.5.0",
"eslint": "^9.11.0",
"husky": "^9.1.6",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"turbo": "^2.1.2",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=20"
},
"packageManager": "npm@10.8.3",
"workspaces": [
"apps/*",
"packages/*",
"scripts/*"
],
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"dependencies": {
"tsup": "^8.3.0",
"tsx": "^4.19.2"
}
}