-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.19 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
{
"name": "worlddriven-webapp",
"version": "1.0.0",
"description": "Web application interface for worlddriven admin",
"type": "module",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"build": "vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"fix": "prettier --write . && eslint . --fix && tsc --noEmit",
"check": "prettier --check . && npm run lint && tsc --noEmit"
},
"keywords": [
"worlddriven",
"react",
"vite",
"admin"
],
"author": "Tobias Wilken",
"license": "AGPL",
"dependencies": {
"express": "5.2.1",
"prop-types": "15.8.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-router-dom": "7.13.0",
"styled-components": "6.3.8"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/node": "25.0.10",
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.2",
"eslint": "9.39.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.4.26",
"globals": "17.1.0",
"prettier": "3.8.1",
"typescript": "5.9.3",
"vite": "7.3.1"
}
}