-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.87 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "the-flying-pupo",
"description": "All my flight data and tracks. Intended for personal use, but you are welcome to take a look",
"version": "1.0.0",
"private": true,
"license": "UNLICENSED",
"author": "PupoSDC",
"engines": {
"node": "20.x",
"npm": ">10.0.0"
},
"scripts": {
"dev": "next dev",
"build:records": "npx ts-node scripts/compileRecords.ts",
"build:next": "next build",
"build": "npm run build:records && npm run build:next",
"start": "next start",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"prettier": "prettier \"(src|app|records)/**/*.+(ts|js|tsx|css)\" --write",
"postinstall": "husky install"
},
"dependencies": {
"@picocss/pico": "^1.5.10",
"axios": "^1.6.2",
"leaflet": "^1.9.4",
"leaflet-rotatedmarker": "^0.2.0",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-leaflet": "^4.2.1",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/leaflet": "^1.9.8",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.1",
"husky": "8.0.3",
"jest": "^29.7.0",
"lint-staged": "15.2.0",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"^react(.*)?$",
"^next(.*)?$",
"<THIRD_PARTY_MODULES>",
"^[./]",
"<THIRD_PARTY_TS_TYPES>",
"<TS_TYPES>",
"^@fontsource(/.*)?$"
]
},
"lint-staged": {
"src/**/*.{ts,tsx}": "bash -c tsc",
"*.{ts,tsx}": "eslint --fix --max-warnings=0",
"src/**/*{ts,tsx,js,jsx,mdx,md,json,css,html}": "prettier --write"
},
"eslintConfig": {
"extends": "next/core-web-vitals",
"rules": {
"react/display-name": "off"
}
},
"eslintIgnore": [
"**/{__tests__,__stories__,__mocks__}/**",
"**/*.{test,spec,stories,example}.{js,jsx,ts,tsx}"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}