-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.49 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
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "designvote-client",
"version": "0.1.0",
"private": true,
"homepage": "https://designvote.io",
"dependencies": {
"@auth0/auth0-react": "^1.2.0",
"@chakra-ui/icons": "^1.0.5",
"@chakra-ui/react": "^1.0.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.0.0",
"@material-ui/core": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.57",
"@splitbee/web": "^0.2.4",
"@stripe/react-stripe-js": "^1.4.1",
"@stripe/stripe-js": "^1.17.0",
"aws-sdk": "^2.848.0",
"axios": "^0.21.2",
"caniuse-lite": "^1.0.30001279",
"date-fns": "^2.24.0",
"formik": "^2.2.6",
"formik-persist": "^1.1.0",
"framer-motion": "^3.10.0",
"history": "^5.0.0",
"http-proxy-middleware": "^2.0.1",
"install": "^0.13.0",
"lodash.debounce": "^4.0.8",
"lodash.memoize": "^4.1.2",
"logrocket": "^1.0.14",
"normalizr": "^3.6.1",
"react": "^17.0.1",
"react-cookie": "^4.0.3",
"react-dom": "^17.0.1",
"react-dropzone": "^11.3.0",
"react-error-boundary": "^3.1.0",
"react-helmet": "^6.1.0",
"react-hotjar": "^5.0.0",
"react-icons": "^4.3.1",
"react-in-viewport": "^1.0.0-alpha.16",
"react-query": "^3.9.8",
"react-router-dom": "^6.0.0-beta.0",
"react-scripts": "^4.0.3",
"stripe": "^8.161.0",
"ts-key-enum": "^2.0.7",
"use-keyboard-shortcut": "^1.0.6",
"web-vitals": "^1.1.0",
"whatwg-fetch": "^3.6.1",
"yup": "^0.32.9",
"zustand": "^3.3.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.2.1",
"@testing-library/react-hooks": "^5.0.3",
"@testing-library/user-event": "^12.0.2",
"@types/faker": "^5.1.7",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.memoize": "^4.1.6",
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/typescript-estree": "^4.20.0",
"eslint": "^7.23.0",
"faker": "^5.4.0",
"husky": "^5.0.9",
"is-ci": "^2.0.0",
"is-ci-cli": "^2.2.0",
"jest-watch-typeahead": "^0.6.1",
"kill-port-process": "^2.3.0",
"lint-staged": "^10.5.4",
"msw": "^0.26.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"react-snap": "^1.13.1",
"typescript": "^4.2.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:watch": "jest --watch",
"test:coverage": "jest --watch=false --coverage",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --watch --runInBand",
"lint-staged": "lint-staged",
"lint": "eslint . --cache-location node_modules/.cache/eslint",
"format": "prettier --write \"**/*.+(js|json|css|md|mdx|html)\"",
"check-types": "tsc",
"validate": "npm-run-all --parallel check-types lint test:coverage build",
"precommit": "npm-run-all --parallel check-types lint-staged"
},
"reactSnap": {
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
]
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"no-console": "warn"
}
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint",
"jest --findRelatedTests"
],
"**/*.+(js|jsx|ts|tsx|md|json)": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}