-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.11 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
{
"name": "@optro/ui-react",
"description": "Optro Power-Up Marketplace UI Components",
"main": "dist/index.js",
"types": "dist/dts/index.d.ts",
"outputDir": "./dist",
"files": [
"dist",
"types",
"bundle.css",
"README.md"
],
"homepage": "https://github.com/optro-cloud/optro-ui-react",
"repository": {
"type": "git",
"url": "https://github.com/optro-cloud/optro-ui-react.git"
},
"website": "https://www.optro.cloud",
"version": "1.0.33",
"license": "MIT",
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"start": "rollup -c -w",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"build:local": "npm run build && npm pack",
"build:publish": "npm run build && npm publish"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/runtime": "^7.16.3",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/react": "^16.8.25",
"@types/react-dom": "^16.8.5",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"node-sass": "^6.0.1",
"path": "^0.12.7",
"postcss": "^8.4.4",
"rollup": "^2.60.1",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.2",
"sass": "^1.35.1",
"typescript": "^4.1.5"
},
"dependencies": {
"@optro/api-client": "^1.0.4",
"tslib": "^2.1.0"
}
}