-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.84 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
{
"name": "dothemath-app-frontend",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite --port 3001",
"dev:local-api": "yarn dev --mode local-api",
"build": "tsc && vite build",
"serve": "vite preview --port 3001",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,md}'",
"test": "jest",
"test:e2e": "percy exec start-server-and-test 'VITE_RECAPTCHA_DISABLE=true yarn dev' http-get://localhost:3001 'cypress run'",
"test:e2e-manual": "start-server-and-test 'VITE_RECAPTCHA_DISABLE=true yarn dev' http-get://localhost:3001 'cypress open'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"chromatic": "chromatic",
"ts-coverage": "typescript-coverage-report"
},
"dependencies": {
"@sentry/react": "^6.11.0",
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "^17.0.2",
"react-google-recaptcha": "^2.1.0",
"react-modal": "^3.14.3",
"react-router-dom": "^5.2.0",
"socket.io-client": "^4.1.3",
"use-async-effect": "^2.2.3"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@percy/cli": "^1.0.0-beta.65",
"@percy/cypress": "^3.1.1",
"@storybook/addon-actions": "6.3.7",
"@storybook/addon-essentials": "6.3.7",
"@storybook/addon-links": "6.3.7",
"@storybook/react": "6.3.7",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.168",
"@types/react": "17.0.16",
"@types/react-dom": "^17.0.3",
"@types/react-google-recaptcha": "^2.1.0",
"@types/react-modal": "^3.12.0",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"chromatic": "^5.9.2",
"cypress": "^8.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"sass": "^1.37.5",
"start-server-and-test": "^1.13.1",
"storybook-builder-vite": "0.0.12",
"tailwindcss": "2.2.4",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"typescript": "^4.3.5",
"typescript-coverage-report": "^0.6.0",
"vite": "^2.5.0"
},
"typeCoverage": {
"atLeast": 100,
"ignoreCatch": true
}
}