-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.9 KB
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
{
"name": "boilerplate-2310",
"version": "1.0.0",
"type": "module",
"description": "TS and vite boilerplate",
"main": "server/index.ts",
"repository": "https://github.com/kelly-keating/boilerplate-2310.git",
"author": "Kelly Keating <keating.kel@gmail.com>",
"license": "MIT",
"scripts": {
"start": "vite",
"dev": "vite",
"deploy": "run-s build fire-deploy",
"build": "vite build",
"fire-deploy": "firebase deploy",
"test": "vitest",
"coverage": "vitest --coverage",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx ./src",
"format": "prettier --write ."
},
"eslintConfig": {
"extends": "@devacademy/eslint-config/react",
"ignorePatterns": [
"bundle.js"
]
},
"dependencies": {
"firebase": "^10.12.5"
},
"devDependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@devacademy/eslint-config": "^1.8.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"nock": "^13.3.0",
"npm-run-all": "^4.1.5",
"react": "^18.0.2",
"react-dom": "^18.2.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.1",
"recharts": "^2.12.7",
"sass": "^1.62.1",
"typescript": "^5.5.4",
"vite": "^4.3.3",
"vitest": "^2.0.5"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"browserslist": "> 2%, not dead"
}