-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.5 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
{
"name": "web-ext-react",
"version": "1.1.2",
"description": "Command line tool to help build, run and test ReactJS based WebExtensions",
"main": "index.js",
"bin": {
"web-ext-react": "bin/web-ext-react"
},
"scripts": {
"lint": "eslint index.js",
"test": "qunit tests/unit/*-test.js"
},
"keywords": [
"reactjs",
"javascript",
"web-ext",
"webextensions"
],
"author": "mrloop",
"license": "ISC",
"repository": "https://github.com/mrloop/web-ext-react",
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": [
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2018
}
},
"prettier": {
"trailingComma": "es5"
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix"
],
"*.+(json|css|md)": [
"prettier --write"
]
},
"dependencies": {
"@cnakazawa/watch": "^1.0.4",
"cpy": "^8.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"babel-eslint": "^10.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"qunit": "^2.11.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}