-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "react-component-library-boilerplate",
"version": "0.0.1",
"description": "ReactJS Components of funky svg buttons",
"main": "dist/index.js",
"browser": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"private": false,
"scripts": {
"start": "styleguidist server",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel lint:fix test:no-coverage type-check rollup docs:build",
"lint:fix": "eslint --ext ./ \"src/**/*.ts\" --fix",
"test:no-coverage": "jest --no-coverage",
"type-check": "tsc --emitDeclarationOnly",
"rollup": "rollup -c",
"docs:build": "styleguidist build",
"postbuild": "find ./dist -type f -name \"*.test.d.ts\" -delete",
"test": "jest",
"test:dev": "jest --watch --no-coverage",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aclearworld/react-component-library-boilerplate.git"
},
"keywords": [
"react",
"Components Library"
],
"files": [
"/dist"
],
"author": "kotatu <[email protected]> (https://github.com/aclearworld)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aclearworld/react-component-library-boilerplate/issues"
},
"homepage": "https://github.com/aclearworld/react-component-library-boilerplate#readme",
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-parameters": "7.2.0",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@rollup/plugin-typescript": "^2.0.1",
"@testing-library/react": "^9.3.2",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.16",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/webpack": "^4.41.0",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.3.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prefer-arrow": "^1.1.7",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-styleguidist": "9.1.13",
"rimraf": "^3.0.0",
"rollup": "^1.27.9",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-license": "^0.13.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"style-loader": "^1.0.1",
"typescript": "^3.7.3",
"webpack": "^4.41.2"
},
"dependencies": {
"core-js": "^2.6.11"
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
}
}