-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.6 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
{
"private": true,
"scripts": {
"clean": "turbo run clean",
"git-reset": "git reset --hard HEAD",
"docs:dev": "pnpm -F docs dev",
"docs:build": "pnpm -F docs build",
"test": "turbo run test",
"lint": "turbo run lint",
"start": "turbo run start --filter=*maker-ui* --parallel --continue",
"build": "turbo run build --filter=*maker-ui* --no-deps --include-dependencies",
"cy:open": "cypress open --component",
"cy:run": "cypress run --component",
"changeset": "changeset",
"release": "changeset publish"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@changesets/changelog-github": "^0.4.3",
"@changesets/cli": "^2.21.1",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/node": "^18.11.5",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-test-renderer": "^17.0.0",
"babel-jest": "^29.4.3",
"cypress": "^13.6.4",
"cypress-plugin-tab": "^1.0.5",
"eslint": "^8.44.0",
"husky": "^7.0.1",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.4.3",
"jsdom": "^21.1.0",
"next": "^14.0.1",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.0.5",
"tsconfig-paths": "^3.13.0",
"tslib": "^2.6.0",
"tsup": "^7.1.0",
"turbo": "latest",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"esbuild": "^0.18.2"
}
}
}