-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.56 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
{
"name": "truth-or-dare-frontend",
"version": "0.0.1",
"private": true,
"dependencies": {
"@capacitor/app": "^1.0.7",
"@capacitor/core": "^3.3.4",
"@capacitor/haptics": "1.1.3",
"@capacitor/keyboard": "^1.2.0",
"@capacitor/status-bar": "1.0.6",
"@heroicons/react": "^1.0.5",
"@ionic/core": "^6.1.6",
"@ionic/react": "^6.1.6",
"@ionic/react-router": "^6.1.6",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-dom": "^16.9.14",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"animated-number-react": "^0.1.2",
"axios": "^0.24.0",
"formik": "^2.2.9",
"ionicons": "^6.0.0",
"overmind": "^28.0.1",
"overmind-react": "^29.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-login": "^5.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.0",
"typescript": "^4.5.4",
"web-vitals": "^2.1.3",
"workbox-background-sync": "^6.4.2",
"workbox-broadcast-update": "^6.4.2",
"workbox-cacheable-response": "^6.4.2",
"workbox-core": "^6.4.2",
"workbox-expiration": "^6.4.2",
"workbox-google-analytics": "^6.4.2",
"workbox-navigation-preload": "^6.4.2",
"workbox-precaching": "^6.4.2",
"workbox-range-requests": "^6.4.2",
"workbox-routing": "^6.4.2",
"workbox-strategies": "^6.4.2",
"workbox-streams": "^6.4.2",
"yup": "^0.32.11"
},
"scripts": {
"start": "react-scripts start",
"start:cc": "react-scripts -r @cypress/instrument-cra start",
"build": "react-scripts build",
"test": "react-scripts test --transformIgnorePatterns 'node_modules/(?!(@ionic/react|@ionic/react-router|@ionic/core|@stencil/core|ionicons)/)'",
"eject": "react-scripts eject",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cc:instrument": "nyc instrument --compact=false src instrumented",
"cc:report": "nyc report --reporter=text-summary",
"cypress:component": "npx cypress open-ct"
},
"nyc": {
"include": [
"src/**/*"
],
"exclude": [
"src/overmind/example",
"src/reportWebVitals.ts",
"src/serviceWorkerRegistration.ts",
"src/services/game",
"src/services/utilities",
"src/overmind/game/actions.ts"
],
"excludeAfterRemap": true
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@capacitor/cli": "^3.3.4",
"@cypress/code-coverage": "^3.9.12",
"@cypress/instrument-cra": "^1.4.0",
"@cypress/react": "^5.12.1",
"@cypress/webpack-dev-server": "^1.8.0",
"autoprefixer": "^10.4.2",
"cypress": "^9.3.1",
"mini-css-extract-plugin": "2.4.5",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.14"
}
}