-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.66 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
{
"name": "datanorge",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"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"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@picocss/pico": "^1.5.10",
"@tabler/icons-react": "^2.30.0",
"@tanstack/react-table": "^8.9.3",
"axios": "^1.4.0",
"chokidar": "^3.5.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"marked": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sanitize-html": "^2.11.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/node": "^17.0.8",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/sanitize-html": "^2.9.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.46.0",
"eslint-config-react-app": "^7.0.1",
"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.7"
}
}