-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
105 lines (105 loc) · 3.43 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "root",
"private": true,
"engines": {
"node": ">= 20",
"pnpm": "9.x"
},
"scripts": {
"dev": "pnpm run storybook",
"build": "lerna run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clean:deps": "rimraf node_modules packages/**/node_modules",
"clean:build": "rimraf packages/**/lib packages/**/*.tsbuildinfo node_modules/.cache/nx",
"clean": "pnpm run clean:build && pnpm run clean:deps",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"version": "lerna version --force-publish --no-push",
"lint:es": "lerna run lint:es",
"lint:es:fix": "lerna run lint:es:fix",
"lint:style": "lerna run lint:style",
"lint:style:fix": "lerna run lint:style:fix",
"lint:etc": "lerna run lint:etc",
"lint:etc:fix": "lerna run lint:etc:fix",
"lint": "lerna run lint:es,lint:style,lint:etc",
"lint:fix": "lerna run lint:es:fix,lint:style:fix,lint:etc:fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@storybook/addon-essentials": "^8.6.2",
"@storybook/addon-links": "^8.6.2",
"@storybook/addon-onboarding": "^8.6.2",
"@storybook/addon-webpack5-compiler-swc": "^1.0.6",
"@storybook/blocks": "^8.6.2",
"@storybook/nextjs": "^8.6.2",
"@storybook/preview-api": "^8.6.2",
"@storybook/react": "^8.6.2",
"@swc/cli": "0.6.0",
"@swc/core": "1.10.15",
"@swc/jest": "0.2.37",
"@swc/plugin-styled-components": "6.7.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@titicaca/eslint-config-triple": "5.3.1",
"@titicaca/prettier-config-triple": "1.2.1",
"@titicaca/stylelint-config-triple": "1.4.0",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.75",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/testing-library__jest-dom": "^5.14.9",
"@vitejs/plugin-react-swc": "^3.8.0",
"browser-assert": "^1.2.1",
"chromatic": "^11.25.2",
"csstype": "^3.1.3",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-mdx": "^2.3.4",
"eslint-plugin-storybook": "^0.11.2",
"eslint-plugin-testing-library": "^6.5.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"lerna": "^7.4.2",
"lint-staged": "^13.3.0",
"msw": "^2.7.0",
"msw-storybook-addon": "^2.0.4",
"next": "^14.2.24",
"nx-cloud": "16.4.0",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.10",
"rollup-plugin-node-externals": "^7.1.3",
"rollup-plugin-preserve-directives": "^0.4.0",
"storybook": "^8.6.2",
"storybook-addon-swc": "^1.2.0",
"storybook-mock-date-decorator": "^2.0.6",
"styled-components": "^6.1.15",
"stylelint": "^15.11.0",
"ts-jest": "^29.2.5",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "5.7.3",
"ua-parser-js": "^1.0.40",
"vite": "^5.4.14",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-dts": "^3.9.1"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint",
"prettier --check"
],
"**/*.{json,yaml,md}": [
"prettier --check"
]
}
}