-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.12 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
{
"name": "inspiring-bookmark",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"nyc-report": "nyc report --reporter=text -t .nyc_output --report-dir .nyc_output",
"clean-nyc-report": "shx rm -rf .nyc_output",
"test-storybook-coverage": "test-storybook --coverage && yarn nyc-report && yarn clean-nyc-report",
"test": "yarn concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"yarn storybook --ci\" \"yarn wait-on tcp:6006 && yarn test-storybook-coverage\""
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@tanstack/react-query": "^4.29.15",
"@types/node": "20.3.1",
"@types/react": "18.2.13",
"@types/react-dom": "18.2.6",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"html-to-text": "^9.0.5",
"next": "13.4.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.1.3",
"zustand": "^4.3.8"
},
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@storybook/addon-a11y": "^7.1.0",
"@storybook/addon-essentials": "^7.1.0",
"@storybook/addon-interactions": "^7.1.0",
"@storybook/addon-links": "^7.1.0",
"@storybook/blocks": "^7.1.0",
"@storybook/jest": "^0.1.0",
"@storybook/nextjs": "^7.1.0",
"@storybook/react": "^7.1.0",
"@storybook/test-runner": "^0.11.0",
"@storybook/testing-library": "^0.2.0",
"@tanstack/eslint-plugin-query": "^4.29.9",
"@types/html-to-text": "^9.0.1",
"axe-playwright": "^1.2.3",
"concurrently": "^8.2.0",
"eslint-plugin-storybook": "^0.6.12",
"msw": "^1.2.3",
"msw-storybook-addon": "^1.8.0",
"nyc": "^15.1.0",
"shx": "^0.3.4",
"storybook": "^7.1.0",
"wait-on": "^7.0.1"
},
"//": "ref. https://github.com/storybookjs/storybook/issues/22431#issuecomment-1630086092",
"resolutions": {
"jackspeak": "2.1.1"
},
"msw": {
"workerDirectory": "public"
}
}