-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 2.3 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": "nimbus-devtools",
"version": "0.2.0",
"description": "nimbus-devtools",
"license": "MPL-2.0",
"private": true,
"repository": "https://github.com/mozilla-extensions/nimbus-devtools",
"targets": {
"ui": {
"distDir": "./dist/ui",
"publicUrl": "./",
"source": "./src/ui/index.html"
}
},
"browserslist": "firefox 113",
"scripts": {
"build": "npm-run-all clean build:manifest build:ui build:package",
"build:ui": "parcel build --target ui",
"build:manifest": "node ./bin/build-manifest.mjs",
"build:package": "web-ext build -s dist --overwrite-dest --filename nimbus-devtools.xpi",
"clean": "node ./bin/clean.mjs",
"lint": "npm-run-all build lint:*",
"lint:web-ext": "web-ext lint --privileged -s dist",
"lint:eslint": "eslint \"./**/*.{cjs,js,mjs,ts,tsx}\"",
"lint:prettier": "prettier -c \"./src/**/*.{js,json,ts,tsx}\" \"./bin/**/*.mjs\"",
"lint:tsc": "tsc",
"fmt": "prettier -w \"./**/*.{cjs,js,json,mjs,ts,tsx}\"",
"fix": "npm-run-all fix:eslint fmt",
"fix:eslint": "npm run lint:eslint -- --fix",
"watch": "npm-run-all build --parallel --race watch:manifest watch:ui watch:web-ext",
"watch:manifest": "node ./bin/build-manifest.mjs --watch",
"watch:ui": "parcel watch --no-hmr --target ui",
"watch:web-ext": "web-ext run -s dist -f nightly",
"web-ext": "web-ext"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-mozilla": "^3.1.0",
"eslint-plugin-react": "^7.33.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.9.3",
"prettier": "^3.0.0",
"typescript": "^5.4.5",
"watcher": "^2.2.2",
"web-ext": "^8.1.0",
"web-ext-types": "^3.2.1"
},
"dependencies": {
"@mozilla/nimbus-schemas": "^2024.3.1",
"bootstrap": "^5.3.3",
"mozjexl": "github:mozilla/mozjexl",
"normalize.css": "^8.0.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.3",
"react-dom": "^18.3.1",
"react-router": "^6.27.0",
"react-router-dom": "^6.27.0"
}
}