-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 2.34 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 2.34 KB
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
{
"name": "var-meta-ui",
"private": true,
"scripts": {
"build": "turbo run build",
"build:ui": "turbo --filter=ui build",
"build:icon": "turbo --filter=@var-meta/icons build",
"build:packages": "turbo run build --filter='./packages/*'",
"build:storybook": "pnpm run build:packages && pnpm --filter=web build-storybook",
"build:web": "pnpm --filter=web build",
"dev": "turbo run dev --no-cache --continue",
"dev:web": "turbo --filter=web dev:web",
"start:web": "pnpm --filter=web start:dev",
"dev:storybook": "turbo --filter=web storybook",
"serve:storybook": "npx serve ./apps/web/storybook-static",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"preview": "turbo run preview",
"check-types": "turbo run check-types",
"format:write": "turbo run format:write",
"format:check": "turbo run format:check",
"clean": "pnpm clean:jest && turbo run clean && rm -rf node_modules",
"clean:jest": "jest --clearCache",
"changeset": "changeset",
"version-packages": "changeset version",
"test": "jest --verbose --config ./jest.config.js",
"release": "pnpm build:packages && changeset publish",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@swc-node/jest": "^1.5.2",
"@swc/core": "^1.3.35",
"@swc/jest": "^0.2.24",
"@testing-library/dom": "^8.20.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^28.1.1",
"@types/testing-library__jest-dom": "5.14.5",
"cross-env": "^7.0.3",
"eslint": "8.42.0",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-watch-typeahead": "1.1.0",
"lint-staged": "13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.0",
"prettier-plugin-tailwindcss": "^0.6.1",
"pretty-quick": "^4.0.0",
"rimraf": "^5.0.5",
"tsconfig": "workspace:*",
"tsup": "^8.0.2",
"turbo": "^2.0.3"
},
"dependencies": {
"next": "^14.0.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@9.0.4"
}