-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "firefox-plugin",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"cm": "git-cz",
"commitmsg": "commitlint -e"
},
"lint-staged": {
"{src/**/*.{json,js},*.{json,js,md}}": ["prettier --write", "git add"]
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"singleQuote": true
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"getLastRelease": "last-release-git"
},
"dependencies": {
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-scripts": "1.1.4"
},
"devDependencies": {
"@commitlint/cli": "6.1.3",
"@commitlint/config-conventional": "6.1.3",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"husky": "0.14.3",
"last-release-git": "0.0.3",
"lint-staged": "7.0.4",
"prettier": "1.12.1"
}
}