-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.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
{
"name": "connect-app-demo",
"version": "0.0.1",
"scripts": {
"dev": "vite --mode development",
"build:qa": "cross-env VITE_USE_MOCK_BASELAYER=0 vite build --mode development",
"build": "cross-env VITE_USE_MOCK_BASELAYER=0 vite build --mode production",
"lint": "eslint src/**/*.{ts,tsx} --fix",
"format": "prettier --write src/**/*.{ts,tsx}",
"coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter=junit --reporter=verbose",
"test": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@hookform/resolvers": "3.3.4",
"axios": "1.6.0",
"history": "5.3.0",
"lodash": "4.17.21",
"lowdb": "^7.0.0",
"path": "0.12.7",
"preact": "10.19.3",
"preact-router": "4.1.2",
"react-hook-form": "7.49.2",
"yup": "1.3.3",
"zustand": "4.4.7"
},
"devDependencies": {
"@preact/preset-vite": "2.8.1",
"@testing-library/preact": "^3.2.3",
"@types/history": "4.7.11",
"@types/node": "20.10.6",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/ui": "^1.0.0",
"autoprefixer": "10.4.16",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-config-preact": "1.3.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.6.1",
"eslint-plugin-prettier": "5.1.2",
"happy-dom": "^12.0.0",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"postcss": "8.4.31",
"prettier": "3.1.1",
"tailwindcss": "3.4.0",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"vite": "5.0.11",
"vite-plugin-environment": "1.1.3",
"vitest": "^1.0.0",
"vitest-dom": "^0.1.0"
},
"license": "MIT",
"eslintConfig": {
"extends": "preact"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"lint-staged": {
"*.{js,jsx,scss}": [
"npm run lint -- --fix",
"npm run format"
]
}
}