forked from danilowoz/create-content-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.72 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
{
"name": "create-content-loader",
"homepage": "https://danilowoz.github.io/create-content-loader",
"version": "0.1.0",
"scripts": {
"dev": "npm run start",
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"deploy": "npm run build --nomaps && gh-pages -d build",
"release": "semantic-release",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"commit": "git-cz"
},
"dependencies": {
"classnames": "^2.2.5",
"clipboard": "^2.0.0",
"css": "^2.2.1",
"react": "^16.2.0",
"react-click-outside": "tj/react-click-outside",
"react-content-loader": "4.2.1",
"react-css": "^0.0.2",
"react-dom": "^16.1.1",
"react-ga": "^2.5.7",
"react-live": "^1.7.1",
"react-scripts": "^2.1.8",
"react-sketch": "^0.5.1",
"react-tippy": "^1.2.2",
"throttle-debounce": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/release-notes-generator": "^7.1.4",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^1.1.0",
"husky": "^1.3.1",
"prettier": "^1.17.0",
"semantic-release": "^15.13.16"
},
"husky": {
"hooks": {
"pre-commit": "npm run format",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}