This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
executable file
·118 lines (118 loc) · 3.82 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
{
"name": "@class101/ui",
"version": "9.3.3-rc21",
"description": "A React-based UI Component Library, powered by Class101.",
"author": "Class101 Co, LTD.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pedaling/class101-ui.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=12",
"npm": ">=5"
},
"scripts": {
"postinstall": "patch-package",
"prepare": "husky install",
"test": "cross-env CI=1 react-scripts-ts test --env=jsdom",
"test:watch": "react-scripts-ts test --env=jsdom",
"prepublishOnly": "npm run-script prebuild",
"build": "docz build && dist-size ./dist",
"prebuild": "tsc -p . && rollup -c",
"analyze": "cross-env RUNNING_ENV=analyze yarn prebuild",
"start": "rollup -c -w",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build",
"lint": "eslint ./src/**/*.ts{,x} --fix",
"lint:staged": "lint-staged",
"docz:dev": "docz dev",
"docz:build": "docz build",
"prettier": "prettier --write src/**/*.{ts,tsx}",
"generated-icon-export": "node src/Icon/tools/generate-export.js",
"generated-svgr": "cd src/Icon/svgs && npx @svgr/cli --template ../tools/svgr-cli.template.js --config-file ../tools/.svgrrc *.svg --out-dir ../generated --ext tsx",
"svgr": "yarn generated-svgr && yarn generated-icon-export"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": ">=5.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.2",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@emotion/react": "^11.4.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@rollup/plugin-url": "^6.0.0",
"@size-limit/preset-big-lib": "^4.11.0",
"@types/classnames": "^2.3.1",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/styled-components": "5.1.9",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-plugin-styled-components": "^1.12.0",
"cross-env": "^7.0.3",
"dist-size": "^0.4.0",
"docz": "^2.3.1",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-plugin-styled-components": "^3.10.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "2.50.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-visualizer": "^5.5.0",
"size-limit": "^4.5.0",
"styled-components": "5.3.0",
"tslib": "^2.2.0",
"typescript": "4.3.2"
},
"files": [
"dist"
],
"dependencies": {
"classnames": "^2.2.6",
"patch-package": "^6.4.7",
"path-to-regexp": "^3.0.0",
"polished": "^3.4.1",
"postinstall-postinstall": "^2.1.0",
"react-popper": "^1.3.7",
"swiper": "6.6.2"
},
"bugs": {
"url": "https://github.com/pedaling/class101-ui/issues"
},
"homepage": "https://github.com/pedaling/class101-ui#readme",
"keywords": [
"ui-library",
"ui-framework",
"ui-components",
"ui-kit",
"ui-toolkit",
"class101",
"design"
]
}