-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "geono",
"version": "0.1.0",
"description": "An alternative client for browsing Norwegian geodata",
"private": true,
"scripts": {
"start": "npm-run-all -p server vite",
"vite": "vite",
"check": "npm-run-all -p check:*",
"check:lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"check:types": "tsc --noEmit",
"check:knip": "knip",
"server": "nodemon -w bin bin/server.js",
"build": "tsc && vite build"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Jørgen Nystad",
"license": "MIT",
"dependencies": {
"@picocss/pico": "^1.5.10",
"@tabler/icons-react": "^2.29.0",
"axios": "^1.4.0",
"chokidar": "^3.5.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsdom": "^22.1.0",
"ol": "^7.4.0",
"proj4": "^2.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.14.2",
"react-router-dom": "^6.14.2",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@types/proj4": "^2.5.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.46.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"knip": "^2.19.3",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"sass": "^1.64.1",
"typescript": "^5.1.6",
"vite": "^4.4.6"
}
}