-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.21 KB
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": "main",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:5000",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/material": "^5.3.0",
"@reduxjs/toolkit": "^1.7.1",
"axios": "^0.25.0",
"formik": "^2.2.9",
"next": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.34.8",
"react-redux": "^7.2.6",
"react-scripts": "5.0.0",
"redux-logger": "^3.0.6",
"rollbar": "^2.24.0",
"sass": "^1.49.0",
"storybook-formik": "^2.3.1",
"typescript": "^4.5.4",
"web-vitals": "^2.1.3",
"yup": "^0.32.11"
},
"scripts": {
"dev": "next dev",
"doc": "typedoc --out docs",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "eslint --ext js,jsx,ts,tsx cypress src --cache --report-unused-disable-directives --max-warnings=0",
"lint:fix": "eslint --fix",
"format": "prettier --write . --config ./.prettierrc",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.4.14",
"@storybook/addon-essentials": "^6.4.14",
"@storybook/addon-links": "^6.4.14",
"@storybook/builder-webpack5": "^6.4.14",
"@storybook/manager-webpack5": "^6.4.14",
"@storybook/node-logger": "^6.4.14",
"@storybook/preset-create-react-app": "^4.0.0",
"@storybook/react": "^6.4.14",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/axios": "^0.14.0",
"@types/jest": "^27.4.0",
"@types/mocha": "^9.1.0",
"@types/node": "^16.11.21",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.22",
"@types/redux-logger": "^3.0.9",
"@types/testing-library__jest-dom": "^5.14.2",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"cypress": "^9.3.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-storybook": "^0.5.6",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-watch-typeahead": "^1.0.0",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typedoc": "^0.22.11",
"webpack": "^5.66.0"
}
}