-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.33 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": "npm-reax-component",
"version": "1.0.0",
"description": "a boilerplate to create react component",
"main": "lib/index.js",
"module": "lib/index.es.js",
"repository": "https://github.com/ahmadaidil/npm-reax-component.git",
"author": "Ahmad Aidil <ahmdaidil@gmail.com>",
"license": "MIT",
"scripts": {
"start": "yarn docz:dev",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"lint": "esw --ext .jsx --ext .js --color",
"lint:css": "stylelint './src/**/*.js'",
"prerelease": "run-s lint lint:css build pack:modify",
"release": "yarn publish; yarn pack:revert",
"pack:modify": "node scripts/modifyPackage.js",
"pack:revert": "node scripts/revertPackage.js",
"docz:dev": "docz dev",
"docz:build": "docz build",
"precommit-msg": "echo 'Linter checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint",
"lint:css"
],
"peerDependencies": {
"lodash": "^4.17.15",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"eslint-watch": "^6.0.0",
"lodash": "^4.17.15",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-terser": "^5.1.1",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0"
}
}