-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "npm-package-template",
"version": "1.0.0",
"description": "A basic template for a npm package",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"commit": "cz",
"test": "react-scripts test",
"test:single": "react-scripts test --watchAll=false",
"check-coverage": "react-scripts test --coverage --watchAll=false",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"playground:install": "npm install --prefix playground",
"playground:start": "npm start --prefix playground"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"npm",
"package",
"template"
],
"author": "Richard M Hpa <[email protected]> (https://richard-hpa.com/)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-node-resolve": "^13.0.5",
"@testing-library/react": "^12.1.1",
"@testing-library/react-hooks": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"rollup": "^2.58.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.1",
"react-dom": "^16.8.0 || ^17.0.1"
},
"dependencies": {
"commitizen": "^4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}