-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
73 lines (73 loc) · 2.21 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
{
"private": true,
"name": "prettier-browser-extension",
"version": "0.0.5",
"repository": "https://github.com/prettier/prettier-browser-extension.git",
"license": "MIT",
"webExt": {
"sourceDir": "extension/firefox/"
},
"scripts": {
"build:chrome": "cross-env PLATFORM=chrome node scripts/build.js",
"build:firefox": "cross-env PLATFORM=firefox node scripts/build.js",
"build": "yarn build:chrome && yarn build:firefox",
"dev:chrome": "cross-env PLATFORM=chrome node scripts/start.js",
"dev:firefox": "cross-env PLATFORM=firefox node scripts/start.js",
"launch:firefox": "web-ext run",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test-only": "jest --passWithNoTests",
"test": "yarn format:check && yarn lint && yarn test-only"
},
"dependencies": {
"classnames": "^2.2.6",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.15.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-react": "^7.12.10",
"@svgr/webpack": "^5.5.0",
"archiver": "^5.2.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fs-extra": "^9.1.0",
"html-webpack-plugin": "^4.5.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"merge-json-webpack-plugin": "^5.0.3",
"react-devtools": "^4.10.1",
"sass": "^1.32.6",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"web-ext": "^5.5.0",
"webextension-polyfill": "^0.7.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
},
"lint-staged": {
"*.{js,md,css,scss,html,json,yml}": [
"yarn format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}