forked from CheesecakeLabs/cupcaker-web-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.2 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
106
107
108
109
110
111
{
"name": "CupcakerChallenge",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@fontsource/ubuntu": "^4.5.3",
"@hookform/resolvers": "~2.8.0",
"@mui/icons-material": "^5.4.4",
"@mui/material": "^5.4.4",
"@mui/styled-engine-sc": "^5.4.2",
"axios": "~0.21.2",
"classnames": "~2.3.1",
"env-cmd": "~10.1.0",
"enzyme": "~3.11.0",
"enzyme-adapter-react-16": "~1.15.6",
"jest-canvas-mock": "~2.3.1",
"lodash": "~4.17.21",
"react": "~17.0.2",
"react-dom": "~17.0.2",
"react-hook-form": "~7.11.1",
"react-router-dom": "~5.2.0",
"react-scripts": "^5.0.0",
"react-select": "~4.3.1",
"sass": "~1.34.1",
"styled-components": "^5.3.3",
"typeface-inter": "^3.18.1",
"typeface-ubuntu": "^1.1.13",
"typescript": "~4.3.2",
"web-vitals": "~2.0.1",
"yup": "~0.32.9"
},
"devDependencies": {
"@storybook/addon-a11y": "~6.2.9",
"@storybook/addon-actions": "~6.2.9",
"@storybook/addon-docs": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "~6.2.9",
"@storybook/node-logger": "~6.2.9",
"@storybook/preset-create-react-app": "^4.0.1",
"@storybook/react": "^6.1.21",
"@testing-library/jest-dom": "~5.13.0",
"@testing-library/react": "~11.2.7",
"@testing-library/user-event": "~13.2.1",
"@trivago/prettier-plugin-sort-imports": "~3.1.1",
"@types/enzyme": "^3.10.9",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "~26.0.23",
"@types/lodash": "^4.14.175",
"@types/node": "~15.12.2",
"@types/node-sass": "^4.11.1",
"@types/react": "~17.0.9",
"@types/react-dom": "~17.0.6",
"@types/react-router-dom": "~5.1.7",
"@types/react-select": "~4.0.17",
"@types/sinon": "~10.0.2",
"eslint-import-resolver-typescript": "~2.4.0",
"eslint-plugin-prettier": "~3.4.0",
"eslint-plugin-react": "~7.24.0",
"eslint-plugin-react-hooks": "~4.2.0",
"lint-staged": "~11.0.0",
"msw": "^0.38.1",
"prettier": "~2.3.1",
"react-select-event": "~5.3.0",
"sinon": "~11.1.1"
},
"scripts": {
"start": "react-scripts start",
"start:dev": "env-cmd -f ./src/config/.env.local npm start",
"start:staging": "env-cmd -f ./src/config/.env.staging npm start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint:staged": "lint-staged",
"lint": "eslint",
"prettier": "prettier --write src/**/*.{js,jsx,ts,tsx,json,css,scss,md}",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"lint --check"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}