-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 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
{
"name": "serverless-by-design",
"version": "1.0.0",
"description": "Visual approach to serverless application design",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"keywords": [],
"author": "Danilo Poccia",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bootstrap": "^5.2.10",
"@types/file-saver": "^2.0.7",
"@types/js-yaml": "^4.0.9",
"ajv": "^8.18.0",
"eslint": "^10.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.2.0",
"bootstrap": "^5.3.8",
"file-saver": "^2.0.5",
"js-yaml": "^4.1.1",
"jszip": "^3.10.1",
"vis-data": "^8.0.3",
"vis-network": "^10.0.2"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint --fix"
]
},
"overrides": {
"minimatch": "^10.2.1"
}
}