-
Notifications
You must be signed in to change notification settings - Fork 164
/
package.json
76 lines (76 loc) · 2.42 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
{
"name": "design-system",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:strapi/design-system.git",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"develop": "turbo run develop",
"format": "turbo run format",
"lint": "turbo run lint",
"prepare": "husky install",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"test:unit": "turbo run test:unit",
"test:ts": "turbo run test:ts",
"prerelease:enter": "changeset pre enter",
"prerelease:exit": "changeset pre exit",
"release:add": "changeset add",
"release:publish": "turbo run build lint test:ts test:unit && changeset publish",
"release:version": "changeset version && yarn install",
"watch": "turbo run watch"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.5",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@juggle/resize-observer": "3.4.0",
"@storybook/addon-a11y": "8.4.2",
"@strapi/eslint-config": "0.2.0",
"@swc/core": "1.5.27",
"@swc/jest": "0.2.36",
"@testing-library/dom": "10.1.0",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-check-file": "2.8.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest-dom": "5.4.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.2",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-testing-library": "6.2.2",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-styled-components": "7.2.0",
"jest-watch-select-projects": "2.0.0",
"jest-watch-typeahead": "2.2.2",
"prettier": "3.3.1",
"prettier-2": "npm:prettier@^2",
"turbo": "2.0.3",
"typescript": "5.4.5"
},
"engines": {
"node": ">=16.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"packageManager": "[email protected]"
}