-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "fastify-overview-ui",
"description": "UI for fastify-overview",
"version": "3.0.0",
"workspaces": [
"example"
],
"files": [
"index.js",
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint .",
"prepare": "husky",
"test": "node --test"
},
"dependencies": {
"@fastify/static": "^8.1.0",
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@vitejs/plugin-react": "^4.3.4",
"d3": "^7.9.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fastify": "^5.2.1",
"fastify-overview": "^4.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"pre-commit": "^1.2.2",
"prettier": "^3.4.2",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^6.1.0"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/fastify-overview-ui.git"
},
"author": "raul-saez",
"license": "MIT",
"bugs": {
"url": "https://github.com/nearform/fastify-overview-ui/issues"
},
"homepage": "https://github.com/nearform/fastify-overview-ui#readme",
"lint-staged": {
"*.js(x)": "eslint --cache --fix"
}
}