-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.59 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "shamash",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@apollo/client": "4.2.4",
"@entur/form": "9.3.8",
"@entur/icons": "9.0.4",
"@entur/table": "4.10.16",
"@graphiql/plugin-explorer": "5.1.3",
"@graphiql/react": "0.37.7",
"@graphiql/toolkit": "0.12.1",
"@mapbox/polyline": "1.2.1",
"@turf/bbox": "7.3.5",
"@turf/helpers": "7.3.5",
"@turf/line-to-polygon": "7.3.5",
"dotenv": "16.4.7",
"graphiql": "5.2.4",
"graphql": "17.0.1",
"graphql-ws": "5.16.2",
"history": "5.3.0",
"https-browserify": "1.0.0",
"isomorphic-fetch": "3.0.0",
"lodash.debounce": "4.0.8",
"maplibre-gl": "5.24.0",
"monaco-editor": "0.52.2",
"monaco-graphql": "1.8.0",
"query-string": "9.4.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-helmet": "6.1.0",
"react-map-gl": "8.1.1",
"react-test-renderer": "19.2.7",
"sass": "1.101.0",
"typescript": "7.0.2",
"uuid": "14.0.1"
},
"scripts": {
"dev": "vite",
"start": "vite",
"start:server": "node server.js",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" && npm run format:check",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "7.0.0",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "24.13.2",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.62.0",
"@typescript-eslint/parser": "8.62.0",
"@vitejs/plugin-react": "6.0.4",
"eslint": "10.6.0",
"eslint-import-resolver-typescript": "4.4.5",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "28.14.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-testing-library": "7.16.2",
"husky": "9.1.7",
"jsdom": "30.0.1",
"lint-staged": "17.0.8",
"prettier": "2.8.8",
"vite": "8.1.5",
"vitest": "4.1.10"
}
}