-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.93 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "serenity-devtools",
"version": "0.0.1",
"private": true,
"description": "Serenity DevTools Browser Extension",
"author": "Furkan Evran",
"packageManager": "pnpm@10.23.0",
"license": "MIT",
"type": "module",
"scripts": {
"watch": "parcel watch src/manifest.json --host localhost --port 3210 --no-content-hash --dist-dir dist",
"build": "parcel build src/manifest.json --no-content-hash --no-source-maps --dist-dir dist --no-cache",
"lint": "eslint --cache .",
"prettier": "prettier --write .",
"postinstall": "simple-git-hooks",
"dev:chromium": "web-ext run --target=chromium --start-url=https://demo.serenity.is/Northwind/Order --source-dir=./dist",
"dev:firefox": "web-ext run --target=firefox-desktop --start-url=https://demo.serenity.is/Northwind/Order --source-dir=./dist",
"check": "tsc --noEmit --isolatedModules"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix",
"**/*.{ts,tsx}": "tsc-files --noEmit"
},
"@parcel/resolver-default": {
"packageExports": true
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@parcel/config-webextension": "^2.16.3",
"@parcel/core": "^2.16.3",
"@parcel/transformer-js": "^2.16.3",
"@parcel/validator-typescript": "^2.16.3",
"@tailwindcss/postcss": "^4.1.18",
"@types/chrome": "^0.1.36",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"buffer": "^6.0.3",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"parcel": "^2.16.3",
"postcss": "^8.5.6",
"process": "^0.11.10",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.1.18",
"tsc-files": "^1.1.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"web-ext": "^9.2.0"
},
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.5.0",
"react-json-tree": "^0.20.0",
"react-json-view": "^1.21.3"
}
}