-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 3.14 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
{
"name": "react-typescript-npm-boilerplate",
"version": "1.0.0",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"repository": {
"url": "https://github.com/Sivakumar00/react-typescript-npm-boilerplate.git",
"type": "git"
},
"license": "MIT",
"types": "dist/index.d.ts",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/react": "^6.3.8",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^6.0.0",
"@testing-library/user-event": "^13.1.9",
"@types/enzyme": "^3.10.8",
"@types/faker": "^5.5.8",
"@types/jest": "^26.0.23",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"enzyme": "^3.11.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.5.3",
"husky": "^7.0.0",
"install-peers-cli": "^2.2.0",
"jest": "^26.6.3",
"jest-junit": "^12.2.0",
"lint-staged": "^11.0.0",
"postcss": "^8.3.8",
"prepend-file": "^2.0.0",
"prettier": "^2.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.56.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.5.6",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"tslib": "^2.0.3",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"resolutions": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"prepublishOnly": "npm run build",
"start": "start-storybook -p 6006",
"test": "jest",
"test:junit": "jest --ci --testResultsProcessor=\"jest-junit\"",
"pretest": "npm run build",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --max-warnings 0",
"lint:fix": "npm run lint -- --fix --max-warnings 0",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"files": [
"dist"
],
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix --max-warnings 0"
],
"src/**/*.{js,jsx,ts,tsx,md}": [
"prettier --write"
]
},
"dependencies": {}
}