-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.64 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.64 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "linkedin-analyzer-web",
"version": "0.5.0",
"description": "Web interface for LinkedIn CSV data cleaner and analyzer",
"author": "Aditya Kumar Darak",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite --config web/vite.config.js",
"build": "vite build --config web/vite.config.js",
"preview": "vite preview --config web/vite.config.js",
"format": "prettier --no-error-on-unmatched-pattern --write \"*.{json,md,yml,yaml}\" \"docs/**/*.md\" \".github/**/*.{json,md,yml,yaml}\" \"web/**/*.json\"",
"format:check": "prettier --no-error-on-unmatched-pattern --check \"*.{json,md,yml,yaml}\" \"docs/**/*.md\" \".github/**/*.{json,md,yml,yaml}\" \"web/**/*.json\"",
"lint": "eslint \"web/src/**/*.js\" \"web/tests/**/*.js\"",
"typecheck:web": "tsc --noEmit --project jsconfig.json",
"test": "vitest run --config web/vitest.config.js --coverage",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:install": "playwright install chromium firefox webkit",
"test:e2e:ui": "playwright test --ui",
"size": "size-limit",
"size:check": "size-limit --limit",
"ci:web": "npm run format:check && npm run lint && npm run typecheck:web && npm run test && npm run build && npm run size:check",
"check:overrides": "node scripts/check-overrides.js"
},
"keywords": [
"linkedin",
"csv",
"excel",
"data-cleaning",
"web-app"
],
"repository": {
"type": "git",
"url": "https://github.com/Hermione-Granger-1176/linkedin-analyzer"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"overrides": {
"serialize-javascript": "^7.0.5",
"vite-plugin-pwa": {
"vite": "$vite"
}
},
"dependencies": {
"@sentry/browser": "^10.49.0",
"roughjs": "^4.6.6",
"web-vitals": "^5.2.0",
"write-excel-file": "^3.0.8"
},
"size-limit": [
{
"path": "web/dist/assets/index-*.js",
"limit": "500 kB"
},
{
"path": "web/dist/assets/index-*.css",
"limit": "50 kB"
}
],
"devDependencies": {
"@axe-core/playwright": "^4.11.2",
"@playwright/test": "^1.59.1",
"@size-limit/file": "^12.1.0",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.1",
"eslint-import-resolver-node": "^0.3.10",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsdoc": "^62.9.0",
"fake-indexeddb": "^6.1.0",
"globals": "^17.5.0",
"jsdom": "^29.0.2",
"prettier": "^3.8.3",
"size-limit": "^12.0.0",
"typescript": "^6.0.3",
"vite": "^8.0.9",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.18"
}
}