-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.26 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "secutils-webui",
"private": true,
"author": {
"name": "Secutils.dev",
"email": "[email protected]"
},
"version": "1.0.0-beta.2",
"engines": {
"node": "20.x"
},
"browserslist": [
"last 2 versions",
"Firefox ESR",
"not dead"
],
"alias": {
"process": "process/browser.js"
},
"source": [
"src/index.html",
"src/favicon.ico"
],
"dependencies": {
"@babel/runtime": "^7.25.0",
"@elastic/datemath": "^5.0.3",
"@elastic/eui": "^95.7.0",
"@emotion/css": "^11.13.0",
"@emotion/react": "^11.13.0",
"@monaco-editor/react": "^4.6.0",
"@ory/client": "^1.15.4",
"axios": "^1.7.4",
"moment": "^2.30.1",
"nanoid": "^5.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/eslintrc": "^3.1.0",
"@parcel/compressor-brotli": "^2.12.0",
"@parcel/compressor-gzip": "^2.12.0",
"@parcel/config-default": "^2.12.0",
"@parcel/core": "^2.12.0",
"@parcel/packager-raw-url": "^2.12.0",
"@parcel/reporter-bundle-buddy": "^2.12.0",
"@parcel/transformer-image": "^2.12.0",
"@parcel/transformer-js": "^2.12.0",
"@parcel/transformer-raw": "^2.12.0",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"@parcel/transformer-webmanifest": "^2.12.0",
"@parcel/validator-typescript": "^2.12.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"buffer": "^6.0.3",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"monaco-editor": "^0.50.0",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"process": "^0.11.10",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"url": "^0.11.4"
},
"overrides": {
"typescript": "^5.5.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"prebuild": "eslint . && rm -rf dist",
"build": "parcel build",
"watch": "parcel --port 7171",
"perf": "parcel build --reporter @parcel/reporter-bundle-buddy",
"prepare": "husky"
}
}