-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
64 lines (64 loc) · 2.04 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
{
"name": "yumeshop-frontend",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings 0",
"lint:fix": "next lint --max-warnings 0 --fix",
"format": "prettier --write --loglevel=warn '*/**/*.{js,jsx,ts,tsx,html,gql,graphql,json}'",
"fix": "yarn format && yarn lint:fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -s public",
"mock": "prism mock schema/openapi.yaml -p 8080",
"generate": "rm -rf api && openapi2aspida -i schema/openapi.yaml",
"test": "jest"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"next": "13.5.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"resolutions": {
"@types/react": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@next/eslint-plugin-next": "^13.4.12",
"@stoplight/prism-cli": "^4.10.5",
"@storybook/addon-actions": "^7.0.12",
"@storybook/addon-essentials": "^7.0.12",
"@storybook/addon-links": "^7.0.12",
"@storybook/addon-styling": "^1.3.4",
"@storybook/nextjs": "^7.0.12",
"@storybook/react": "7.2.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.4.0",
"@types/node": "18.11.9",
"@types/react": "18.2.44",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.2.0",
"babel-jest": "^29.6.2",
"eslint": "^8.46.0",
"eslint-config-next": "^13.4.12",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-storybook": "^0.6.13",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.7.0",
"openapi2aspida": "^0.23.2",
"prettier": "^2.5.1",
"react-is": "^18.2.0",
"ress": "^5.0.2",
"storybook": "^7.0.12",
"typescript": "4.7.4",
"webpack": "^5.88.2"
}
}