-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
86 lines (86 loc) · 2.75 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
{
"name": "extension-starter-kit",
"version": "0.0.1",
"description": "Extension Starter Kit",
"private": true,
"scripts": {
"tsc": "tsc --noEmit",
"build": "webpack --mode=production",
"develop": "webpack-dev-server --mode=development",
"develop-firefox": "npm run develop -- --env.platform=firefox",
"build-firefox": "npm run build -- --env.platform=firefox",
"crx": "mkdir -p dist && crx pack dist-prod/ -o dist-prod/build.crx",
"zip-source": "zip -r dist-prod/source.zip . -x '*.git*' 'node_modules/*' 'dist-dev/*' 'dist-prod/*' key.pem"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dkthehuman/extension-starter-kit.git"
},
"author": "DK",
"bugs": {
"url": "https://github.com/dkthehuman/extension-starter-kit/issues"
},
"homepage": "https://github.com/dkthehuman/extension-starter-kit#readme",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@types/animejs": "^3.1.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"autoprefixer": "^10.0.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.3.2",
"crx": "^5.0.1",
"css-loader": "^5.0.1",
"eslint": "^7.14.0",
"eslint-config-react-app": "^6.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.5",
"lint-staged": "^10.5.3",
"postcss-loader": "^4.1.0",
"prettier": "^2.2.1",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"webextension-polyfill": "^0.7.0",
"webextension-polyfill-ts": "^0.22.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"zip-webpack-plugin": "^3.0.0"
},
"dependencies": {
"bootstrap": "^4.5.3",
"jquery": "^3.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md}": "prettier --write"
}
}