-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.65 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
{
"name": "scr",
"private": true,
"version": "0.0.44",
"type": "module",
"scripts": {
"dev": "vite --host",
"test": "jest",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"redeploy": "npm run test && npm version patch && npm run build && git push && git push --tags && docker build -t zximage:latest -f deployment/Dockerfile . && deployment/pushToDigitalOcean.sh && deployment/k8s-redeploy.sh && deployment/images.sh"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": "./tsconfig.json"
}
]
},
"testMatch": [
"**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"@reduxjs/toolkit": "^2.3.0",
"material-symbols": "^0.26.0",
"ramda": "^0.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-tooltip": "^5.28.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/ramda": "^0.30.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"jest": "^29.7.0",
"sass": "^1.80.6",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}