forked from chakra-ui/zag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "zag",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/chakra-ui/zag.git"
},
"author": "Segun Adebayo <[email protected]>",
"license": "MIT",
"workspaces": {
"packages": [
"packages/**/*",
"scripts",
"examples/*"
]
},
"scripts": {
"build:fast": "turbo run build:fast --filter=./packages/**/* --concurrency=50%",
"build": "turbo run build --filter=./packages/**/* --concurrency=50%",
"start": "turbo run start --stream --parallel --filter=./packages/**/*",
"postinstall": "husky install && patch-package",
"clean": "manypkg exec rm -rf dist .turbo .swc",
"start:react": "cd examples/next-ts && yarn dev",
"start:vue": "cd examples/vue-ts && vite --port 3002 --clearScreen false",
"start:solid": "cd examples/solid-ts && vite --port 3001 --clearScreen false",
"cypress:react": "start-server-and-test start:react http://localhost:3000 cypress:dev",
"cypress:vue": "start-server-and-test start:vue http-get://localhost:3000 cypress:dev",
"cypress:solid": "start-server-and-test start:solid http-get://localhost:3000 cypress:dev",
"cypress:run": "cypress run",
"cypress:dev": "cypress open",
"fix:pkgs": "manypkg fix",
"gen:machine": "plop machine",
"gen:util": "plop utility",
"lint": "eslint packages --ext .ts",
"version": "changeset version",
"release": "changeset publish",
"test": "jest"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.19.0",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@manypkg/cli": "^0.17.0",
"@swc-node/jest": "^1.4.3",
"@testing-library/cypress": "^8.0.2",
"@testing-library/dom": "^8.12.0",
"@testing-library/jest-dom": "^5.16.1",
"@types/form-serialize": "^0.7.2",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"axe-core": "^4.3.5",
"chalk": "^4.1.2",
"commitlint": "^12.1.4",
"cypress": "^8.5.0",
"cypress-axe": "^0.14.0",
"cypress-plugin-tab": "^1.0.5",
"cypress-real-events": "^1.6.0",
"esbuild": "^0.14.36",
"esbuild-runner": "^2.2.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-testing-library": "^4.4.0",
"form-serialize": "^0.7.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.3",
"lint-staged": "^11.0.0",
"plop": "^3.0.5",
"patch-package": "^6.4.7",
"prettier": "^2.5.1",
"start-server-and-test": "^1.14.0",
"typescript": "^4.6.3",
"turbo": "^1.2.2"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": "prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}