-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.42 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
{
"name": "@jguo/ui-kit",
"version": "0.0.4",
"main": "dist/main.js",
"files": [
"dist"
],
"types": "dist/dts/main.d.ts",
"scripts": {
"build": "yarn build:ts && yarn build:scss",
"watch": "mkdir -p dist && (yarn watch:ts & yarn watch:scss)",
"build:ts": "rollup -c",
"watch:ts": "rollup -c -w",
"lint:ts": "eslint . --ext .ts,.tsx",
"build:scss": "sass src/styles/main.scss dist/main.css",
"watch:scss": "sass --watch src/styles/main.scss dist/main.css",
"build:sg": "styleguidist build",
"serve:sg": "styleguidist server",
"pre-commit-lint": "lint-staged",
"test": "mocha",
"test:ci": "mocha --reporter mocha-junit-reporter"
},
"author": "Jason Guo",
"license": "MIT",
"publishConfig": {
"registry": "https://jasonguo24.jfrog.io/artifactory/api/npm/default-npm-virtual/"
},
"dependencies": {
"clsx": "^1.1.1"
},
"peerDependencies": {
"@types/react": "^16.8.0 || ^17.0.0",
"@types/react-dom": "^16.8.0 || ^17.0.0",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/register": "^7.14.5",
"@rollup/plugin-typescript": "^8.2.1",
"@testing-library/react": "^12.0.0",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"css-loader": "^5.2.6",
"eslint": "^7.29.0",
"eslint-plugin-react": "^7.24.0",
"global-jsdom": "^8.1.0",
"husky": "^7.0.0",
"jsdom": "^16.6.0",
"lint-staged": "^11.0.0",
"mocha": "^9.0.1",
"mocha-junit-reporter": "^2.0.0",
"react": "^17.0.2",
"react-docgen-typescript": "^2.0.0",
"react-dom": "^17.0.2",
"react-styleguidist": "^11.1.7",
"rollup": "^2.52.1",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.0.0",
"tslib": "^2.3.0",
"typescript": "^4.3.4",
"webpack": "^5.41.1"
}
}