-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.78 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
{
"name": "cookery2",
"version": "0.0.1",
"private": false,
"scripts": {
"start": "PORT=3003 react-scripts start",
"build": "react-scripts build",
"pretest": "tsc --noEmit",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write \"**/*.+(ts|tsx|json|css|scss)\"",
"linter:js": "npx eslint --config .eslintrc.js 'src/**/*.{ts,tsx}' --max-warnings 0",
"linter:css": "npx stylelint 'src/**/*.css'",
"watch": "react-scripts test --verbose=false",
"bundle": "npm run build && source-map-explorer 'build/static/js/*.js'",
"prepare": "husky install"
},
"dependencies": {
"@auth0/auth0-react": "^2.2.4",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"axios": "^1.6.3",
"classnames": "^2.3.1",
"formik": "^2.4.5",
"formik-material-ui": "^3.0.1",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"react-use": "^17.4.2",
"typescript": "5.4.2",
"yup": "^1.3.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"stylelint": {
"extends": "stylelint-config-recommended"
},
"devDependencies": {
"@pact-foundation/pact": "^12.1.1",
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/classnames": "^2.3.1",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@types/ramda": "^0.29.9",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/recompose": "^0.30.14",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"coveralls": "^3.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-css-modules": "^2.12.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"http-proxy-middleware": "^2.0.6",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"react-scripts": "5.0.1",
"source-map-explorer": "^2.5.3",
"stylelint": "^16.1.0",
"stylelint-config-recommended": "^14.0.0"
},
"proxy": "http://localhost:4003",
"lint-staged": {
"*.{ts,tsx}": "eslint --config .eslintrc.js --max-warnings 0",
"*.scss": "./go linter-css"
},
"jest": {
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
}
}
}