-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.4 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "stepper-bootstrap",
"version": "1.0.7",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"keywords": [
"stepper",
"bootstrap",
"react"
],
"author": "Manish Prasad",
"license": "MIT",
"bugs": {
"url": "https://github.com/manisuec/stepper-bootstrap/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manisuec/stepper-bootstrap.git"
},
"homepage": "https://manisuec.github.io/stepper-bootstrap/",
"files": [
"build"
],
"scripts": {
"test": "react-scripts test",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "rollup -c",
"lint:fix": "./node_modules/.bin/eslint --fix src/**/*.js",
"prettier:write": "./node_modules/.bin/prettier --config .prettierrc --write 'src/**/*.js'",
"prettier:check": "./node_modules/.bin/prettier --config .prettierrc --check 'src/**/*.js'",
"predeploy": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"./node_modules/.bin/prettier --write",
"./node_modules/.bin/eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@storybook/addon-docs": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/react": "^6.3.12",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.35",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-loader": "^8.2.3",
"babel-preset-react-app": "^10.0.0",
"bootstrap": "^5.1.3",
"clsx": "^1.1.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"immer": ">=9.0.6",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"node-sass": "^6.0.1",
"prettier": "^2.5.0",
"react": "^17.0.2",
"react-bootstrap": "^2.0.0",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"rollup": "^2.60.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.0",
"sass-loader": "^10.1.1",
"trim": ">=0.0.3",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"peerDependencies": {
"clsx": "^1.1.1",
"react": "^17.0.2",
"react-bootstrap": "^2.0.0",
"react-dom": "^17.0.2"
}
}