forked from SuperLuckyYU/vocano-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.82 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.82 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
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
125
126
127
{
"name": "vocano-ui",
"version": "0.3.0",
"private": false,
"description": "React components library",
"author": "Chengyu Hao",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"keywords": [
"Component",
"UI",
"React",
"Typescript"
],
"homepage": "https://github.com/SuperLuckyYU/vocano-ui.git",
"repository": {
"type": "git",
"url": "https://github.com/SuperLuckyYU/vocano-ui.git"
},
"files": [
"dist"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"react-transition-group": "^4.4.2",
"web-vitals": "^1.0.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"scripts": {
"start": "react-scripts start",
"clean": "rimraf ./dist",
"build": "npm run clean && npm run build-ts && npm run build-css",
"build-ts": "tsc -p tsconfig.build.json",
"build-css-test": "node-sass ./src/**/*.scss ./dist/",
"build-css": "node-sass ./src/styles/index.scss ./dist/index.css",
"test": "react-scripts test",
"test:nowatch": "cross-env CI=true react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ext js,ts,tsx src --max-warnings 5",
"lint:style": "stylelint --fix \"{src, components}/**/*.scss\" --syntax scss",
"lint:prettier": "prettier --check \"src/**/*\" --end-of-line auto",
"prettier": "prettier -c --write \"src/**/*\"",
"prepublishOnly": "npm run test:nowatch && npm run lint && npm run lint:style && npm run build",
"start:docs": "dumi dev",
"docs:build": "dumi build"
},
"husky": {
"hooks": {
"pre-commit": "npm run test:nowatch && npm run prettier && npm run lint && npm run lint:style"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.0.0",
"@types/react-dom": "^16.0.0",
"@types/react-transition-group": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"@umijs/plugin-sass": "^1.1.1",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"cross-env": "^7.0.3",
"css-loader": "^4.3.0",
"dumi": "^1.0.16",
"dumi-theme-mobile": "^1.1.6",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^33.0.1",
"husky": "^4.2.1",
"node-sass": "^4.14.1",
"prettier": "^2.3.1",
"react": "^16.12.0",
"react-docgen-typescript": "^2.0.0",
"react-dom": "^16.12.0",
"react-scripts": "4.0.3",
"rimraf": "^2.7.1",
"sass-loader": "^10.2.0",
"style-loader": "^1.3.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recess-order": "^2.4.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"typescript": "^4.1.2",
"wrappy": "^1.0.2"
}
}