-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"name": "story-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">= 16.18.0"
},
"scripts": {
"dev": "vite",
"start": "vite",
"test": "vitest",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix",
"format": "prettier --write src/**"
},
"lint-staged": {
"*.ts": "eslint"
},
"husky": {
"hooks": {
"precommit": "lint-staged && pretty-quick --staged"
}
},
"dependencies": {
"@atomic-stack/theme": "^1.0.1",
"@preact/signals-react": "^1.3.2",
"firebase": "^9.22.2",
"firebaseui": "^6.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.2"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react-swc": "^3.2.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"happy-dom": "^8.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"sass": "^1.58.3",
"typescript": "^5.0.4",
"vite": "^4.1.4",
"vitest": "^0.29.2"
}
}