-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.29 KB
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
{
"name": "@webapp-suite/elements-react",
"version": "0.11.1",
"description": "Progressive ui library based on web-component and react",
"bugs": {
"url": "https://github.com/webapp-suite/elements-react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/webapp-suite/elements-react.git"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "father-build",
"deploy": "DEPLOY_ENV=GITHUB npm run docs:build && npm run docs:deploy",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"release": "npm run build && npm publish --access public --registry=https://registry.npmjs.org/",
"start": "dumi dev",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"version:major": "npm version major",
"version:minor": "npm version minor",
"version:patch": "npm version patch"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@webapp-suite/elements": "^0.10.0",
"@webapp-suite/elements.aside": "^0.10.0",
"@webapp-suite/elements.button": "^0.10.0",
"@webapp-suite/elements.confirmation-prompt": "^0.10.0",
"@webapp-suite/elements.dialog": "^0.10.0",
"@webapp-suite/elements.header": "^0.10.0",
"@webapp-suite/elements.icon": "^0.10.0",
"@webapp-suite/elements.modal": "^0.10.0",
"@webapp-suite/elements.root": "^0.10.0",
"@webapp-suite/elements.tab": "^0.10.0",
"@webapp-suite/elements.tabs": "^0.10.0",
"@webapp-suite/elements.tooltip": "^0.10.0",
"classnames": "^2.2.6",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@types/react": "^16.14.0",
"@types/react-dom": "^16.9.14",
"@types/styled-components": "^5.1.15",
"@umijs/test": "^3.0.5",
"dumi": "^1.1.24",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"lint-staged": "^10.0.7",
"prettier": "^2.2.1",
"yorkie": "^2.0.0"
},
"peerDependencies": {
"react": ">=16.14.0",
"react-dom": ">=16.14.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
}
}