-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 2.04 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
{
"name": "job-scanner",
"private": true,
"version": "1.0.3",
"scripts": {
"dev": "vite",
"test": "vitest run",
"test:update": "node tools/test/linkedin-test-html-generator.mjs --update",
"build": "tsc && vite build && vite build -c vite-script.config.ts && browserify ./dist/assets/content.js -o ./dist/assets/content.js",
"preview": "vite preview",
"prepare": "husky",
"version:major:up": "node tools/version/version-manage.mjs major up",
"version:major:down": "node tools/version/version-manage.mjs major down",
"version:minor:up": "node tools/version/version-manage.mjs minor up",
"version:minor:down": "node tools/version/version-manage.mjs minor down",
"version:patch:up": "node tools/version/version-manage.mjs patch up",
"version:patch:down": "node tools/version/version-manage.mjs patch down"
},
"dependencies": {
"@fontsource/roboto": "^5.0.13",
"react": "^18.3.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.4",
"react-icons": "^5.2.1",
"react-router-dom": "^6.23.0",
"uuid": "^9.0.1",
"vite-tsconfig-paths": "^4.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/chrome": "^0.0.267",
"@types/node": "^20.12.11",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"browserify": "^17.0.0",
"daisyui": "^4.11.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vitest": "^1.6.0"
}
}