-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) Β· 3.25 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
{
"name": "fun-eat",
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack --config webpack.dev.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint:styled": "stylelint 'src/**/*.tsx' --fix",
"test": "jest",
"test:coverage": "jest --watchAll --coverage",
"lint:es": "eslint '**/*.{js,ts,tsx}'",
"lint:es:fix": "yarn lint:es -- --fix"
},
"dependencies": {
"@fun-eat/design-system": "^0.4.3",
"@tanstack/react-query": "^4.32.6",
"@tanstack/react-query-devtools": "^4.32.6",
"@vanilla-extract/css": "^1.14.1",
"@vanilla-extract/css-utils": "^0.1.3",
"@vanilla-extract/dynamic": "^2.1.0",
"@vanilla-extract/recipes": "^0.5.2",
"browser-image-compression": "^2.0.2",
"classnames": "^2.5.1",
"dayjs": "^1.11.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-router-dom": "^6.14.2",
"styled-components": "^6.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@storybook/addon-essentials": "^7.0.27",
"@storybook/addon-interactions": "^7.0.27",
"@storybook/addon-links": "^7.0.27",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/addon-styling-webpack": "^0.0.6",
"@storybook/blocks": "^7.0.27",
"@storybook/react": "^7.0.27",
"@storybook/react-webpack5": "^7.0.27",
"@storybook/testing-library": "^0.0.14-next.2",
"@svgr/webpack": "^8.0.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vanilla-extract/jest-transform": "^1.1.4",
"@vanilla-extract/webpack-plugin": "^2.3.6",
"babel-plugin-styled-components": "^2.1.4",
"chromatic": "^11.0.8",
"copy-webpack-plugin": "^11.0.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.44.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-unused-imports": "^3.1.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-junit": "^16.0.0",
"mini-css-extract-plugin": "^2.8.1",
"msw": "^1.2.3",
"msw-storybook-addon": "^1.8.0",
"postcss": "^8.4.29",
"postcss-styled-syntax": "^0.4.0",
"prettier": "^2.8.8",
"storybook": "^7.1.1",
"stylelint": "^15.10.3",
"stylelint-order": "^6.0.3",
"stylelint-semantic-groups": "^1.2.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"msw": {
"workerDirectory": "public"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}