-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.96 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
{
"name": "@eugle/oneui",
"description": "A simple based on the react and styled-components senior style ui library",
"version": "0.3.9",
"license": "MIT",
"type": "module",
"scripts": {
"setup": "yarn install && cd docs && yarn install",
"add-contributor": "all-contributors add",
"dev-npm": "rollup -c -w",
"dev-docs": "cd docs && yarn run dev",
"dev": "concurrently --kill-others-on-fail \"yarn run dev-npm\" \"yarn run dev-docs\"",
"build": "rollup -c",
"minify-cjs": "uglifyjs --compress --mangle -o dist/index.js -- dist/index.js",
"minify-es": "terser --compress --mangle --comments /$^/ -o dist/index.es.js -- dist/index.es.js",
"minify": "concurrently --kill-others-on-fail \"yarn run minify-cjs\" \"yarn run minify-es\"",
"postbuild": "yarn run minify",
"predeploy": "cd docs && yarn install && yarn run deploy",
"deploy": "gh-pages -t -d docs/out"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@rollup/plugin-url": "^6.1.0",
"@svgr/rollup": "^6.2.0",
"@types/jest": "^27.4.0",
"@types/node": "^20.6.5",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"all-contributors-cli": "^6.13.0",
"babel-eslint": "^10.1.0",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^3.2.3",
"prettier": "^2.5.1",
"prettier-eslint-cli": "^5.0.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.0",
"rollup": "^2.63.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^4.0.2",
"styled-components": "^5.3.3",
"terser": "^5.10.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"uglify-js": "^3.14.5"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"files": [
"dist"
],
"homepage": "https://github.com/eugle/oneui#readme",
"bugs": {
"url": "https://github.com/eugle/oneui/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eugle/oneui.git"
},
"keywords": [
"eugle",
"oneui",
"all-in-js",
"css-in-js",
"styled-components"
],
"author": {
"name": "eugle",
"email": "[email protected]",
"url": "https://eugle.cn/"
},
"dependencies": {
"@types/styled-components": "^5.1.27"
}
}