-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.64 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
{
"name": "@scorpioop/simonsay",
"version": "0.2.5",
"private": false,
"description": "react components",
"author": "scorpioop",
"main": "./dist/index.es.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"homepage": "https://scorpioop.github.io/react-component-simonsay",
"license": "MIT",
"keywords": [
"Component",
"UI",
"React"
],
"files": [
"dist"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"ahooks": "^3.7.4",
"async-validator": "^4.2.5",
"axios": "^1.3.2",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"lodash": "^4.17.21",
"postcss-pxtorem": "^6.0.0",
"react-transition-group": "^4.4.5",
"rollup": "^2.79.1",
"rollup-plugin-sass": "^1.12.19",
"rollup-plugin-typescript2": "^0.34.1",
"web-vitals": "^2.1.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-scripts": ">=5.0.1"
},
"scripts": {
"start": "react-scripts start",
"lint": "eslint --ext .tsx --ext .js --ext .jsx src/",
"build": "npm run clean && npm run build-ts && npm run build-css",
"clean": "rimraf ./dist",
"test": "react-scripts test",
"test:nowatch": "cross-env CI=true react-scripts test",
"build-ts": "tsc -p tsconfig.build.json",
"build-css": "node-sass ./src/styles/index.scss ./dist/index.css",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"prepublishOnly": "npm run lint & npm run test:nowatch & npm run build",
"build-es": "rollup --config rollup.config.js",
"start-roll": "rollup --config rollup.dev.config.js"
},
"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": {
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/node-logger": "^6.5.16",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/classnames": "^2.3.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-transition-group": "^4.4.5",
"@types/webpack": "^5.28.0",
"babel-plugin-named-exports-order": "^0.0.2",
"node-sass": "^7.0.3",
"postcss": "^8.4.21",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"rimraf": "^4.1.2",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^2.0.2",
"typescript": "^4.4.2",
"webpack": "^5.75.0"
}
}