-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.92 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
{
"name": "@arjanfrans/environment-warning-browser-extension",
"description": "Extension to assist development by warning you about the environment you are currently on.",
"version": "0.1.0",
"private": true,
"author": {
"name": "Arjan Frans",
"email": "[email protected]",
"url": "https://arjanfrans.com"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/arjanfrans"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arjanfrans/environment-warning-browser-extension.git"
},
"bugs": {
"url": "https://github.com/arjanfrans/environment-warning-browser-extension/issues"
},
"license": "GPL-3.0-only",
"homepage": "https://github.com/arjanfrans/environment-warning-browser-extension",
"devDependencies": {
"@types/chrome": "^0.0.254",
"@types/web": "^0.0.135",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.45.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^2.8.4",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.0.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"scripts": {
"start": "NODE_ENV=development webpack --watch",
"build:chrome": "BUILD=chrome NODE_ENV=production webpack",
"build:firefox": "BUILD=firefox NODE_ENV=production webpack",
"zip:chrome": "cd dist/chrome && zip -r ../../chrome.zip *",
"zip:firefox": "cd dist/firefox && zip -r ../../firefox.zip *",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"cs-format": "prettier 'src/**/*.ts' --write --no-semi --tab-width 4 --print-width=120",
"cs-css": "stylelint src/**/*.css --fix",
"cs": "npm run cs-format && npm run lint && npm run cs-css"
}
}