-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.58 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
{
"name": "@pokeberry/root",
"private": true,
"version": "0.1.0",
"workspaces": [
"packages/*"
],
"sideEffects": false,
"license": "MIT",
"scripts": {
"dev": "yarn storybook",
"build": "lerna run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "cypress run --component",
"test:open": "cypress open --component",
"test:coverage": "yarn clear-coverage && yarn test && yarn report:cy",
"report:cy": "nyc report --reporter lcov --reporter text --report-dir coverage/coverage-cypress --check-coverage",
"clear-coverage": "rm -rf .nyc_output && rm -rf coverage",
"prepare": "husky install",
"new:component": "hygen component new --name"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.0",
"@cypress/react": "^5.12.5",
"@cypress/vite-dev-server": "^3.1.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-actions": "^6.1.16",
"@storybook/addon-essentials": "^6.1.16",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.1.16",
"@storybook/builder-vite": "^0.2.2",
"@storybook/react": "^6.1.16",
"@storybook/testing-react": "^1.3.0",
"@testing-library/dom": "^8.13.0",
"@types/jest": "^28.1.8",
"@types/node": "^17.0.35",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@vitejs/plugin-react": "^1.3.0",
"cypress": "^10.0.3",
"del": "^6.1.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-storybook": "^0.6.4",
"husky": "^8.0.1",
"hygen": "^6.2.8",
"istanbul-lib-coverage": "^3.2.0",
"lerna": "^5.4.3",
"lint-staged": "^13.0.3",
"nx": "^14.5.7",
"open-cli": "^7.0.1",
"prettier": "^2.6.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup-plugin-copy": "^3.4.0",
"storybook-addon-react-docgen": "^1.2.42",
"storybook-addon-sass-postcss": "^0.1.3",
"typescript": "^4.6.3",
"vite": "^3.0.8",
"vite-plugin-dts": "^1.4.1",
"vite-plugin-istanbul": "^3.0.0"
}
}