-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.2 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
{
"name": "diver_down",
"prettier": "prettier-config-smarthr",
"engines": {
"node": ">= 20.0.0"
},
"packageManager": "[email protected]",
"license": "MIT",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
]
},
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/alpaca-tc/diver_down.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"update-license": "license-checker --excludePrivatePackages --customPath .license-checker-format.json --production --json --out ./frontend/data/thirdPartyLicenses.json",
"test": "vitest",
"lint": "run-p lint:*",
"lint:tsc": "tsc --noEmit",
"lint:style": "stylelint './**/*.ts{,x}'",
"lint:prettier": "prettier --check './frontend/**/*.ts{,x}'",
"format": "run-s -c format:*",
"format:style": "stylelint --fix './frontend/**/*.ts{,x}'",
"format:prettier": "prettier --write './**/*.ts{,x}'",
"prepare": "husky"
},
"dependencies": {
"@hpcc-js/wasm": "2.16.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.10.3",
"react-router-dom": "^6.23.1",
"react-svg-pan-zoom": "^3.12.1",
"react-svg-pan-zoom-loader": "^1.6.1",
"smarthr-normalize-css": "^1.1.0",
"smarthr-ui": "^52.0.0",
"styled-components": "^6.1.11",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/node": "^20.14.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/react-svg-pan-zoom": "^3.3.9",
"@types/react-svg-pan-zoom-loader": "^1.5.0",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.5.0",
"eslint-config-smarthr": "^6.32.1",
"husky": "^9.0.11",
"license-checker": "^25.0.1",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"prettier-config-smarthr": "^1.0.0",
"stylelint": "^16.6.1",
"stylelint-config-smarthr": "^3.0.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-styled-components": "^0.1.1",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vitest": "^1.6.0"
}
}