-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.19 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
{
"name": "pokemon-zoggen",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"generate-data": "node ./scripts/frontend/fetch-pokedata.js",
"prebuild": "npm run generate-data",
"dev": "vite --host",
"start": "docker-compose up -d",
"build": "tsc && vite build",
"postbuild": "npx cap sync",
"preview": "vite preview",
"cypress:open": "cypress open",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run -u",
"lint:eslint": "eslint src --ext .ts --ext .tsx",
"lint:eslint:fix": "eslint src --fix --ext .ts --ext .tsx",
"lint:markdownlint": "markdownlint -c .markdown-lint.yml .src/**/*.md",
"lint:stylelint": "stylelint ./src/**/*.css",
"validate": "concurrently \"npm run lint:eslint\" \"npm run lint:markdownlint\" \"npm run lint:stylelint\"",
"dump-database": "node scripts/firebase/dump-firestore.js",
"dump-database:prod": "node scripts/firebase/dump-firestore.js prod",
"clear-database": "curl -v -X DELETE \"http://localhost:8080/emulator/v1/projects/pokemon-zoggen/databases/(default)/documents\""
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"endOfLine": "lf"
},
"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": "^5.4.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.13",
"@reduxjs/toolkit": "^1.9.5",
"@sentry/react": "^7.12.0",
"@sentry/tracing": "^7.12.1",
"@tailwindcss/forms": "^0.5.6",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.6",
"@types/lodash": "^4.14.199",
"@types/node": "^20.6.2",
"@types/react": "^17.0.42",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@vitejs/plugin-react": "^4.1.0",
"autoprefixer": "10.4.16",
"concurrently": "^8.2.1",
"csvtojson": "^2.0.10",
"cypress": "^11.2.0",
"dotenv": "^16.3.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.0.0",
"firebase": "^9.23.0",
"firebase-admin": "^11.10.1",
"got": "^13.0.0",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"markdownlint-cli": "^0.36.0",
"postcss": "^8.4.31",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.1.3",
"react-redux-firebase": "^3.11.0",
"react-router-dom": "^6.16.0",
"redux-firestore": "^2.0.1",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "0.34.4"
},
"dependencies": {
"@auroratide/pokemon-types": "^0.1.0",
"@capacitor-firebase/authentication": "^1.4.0",
"@capacitor/android": "^4.8.1",
"@capacitor/app": "^4.1.1",
"@capacitor/core": "^4.8.1",
"@capacitor/dialog": "^4.1.0",
"@capacitor/ios": "^4.8.1"
}
}