-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.64 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
{
"name": "borderlands3-ui",
"version": "0.0.18",
"description": "> TODO: description",
"author": "mrrs878 <mrrs878@foxmail.com>",
"homepage": "https://mrrs878.github.io/borderlands3-ui",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"React.js",
"Borderlands3",
"Components Library",
"Typescript"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/mrrs878/borderlands3-ui.git"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && cross-env BABEL_ENV=production rollup -c",
"generate": "node ./scripts/createComponent",
"lint": "eslint src",
"pub": "npm run build && git push --follow-tags origin main && npm publish",
"prepare": "husky install",
"release": "standard-version",
"storybook": "cross-env BROWSER=none start-storybook -p 6006",
"storybook:export": "build-storybook -o docs-build --no-dll",
"test": "cross-env BABEL_ENV=test jest --passWithNoTests",
"test:watch": "cross-env BABEL_ENV=test npm run test -- --watch"
},
"bugs": {
"url": "https://github.com/mrrs878/borderlands3-ui/issues"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-typescript": "^8.2.5",
"@storybook/addon-backgrounds": "^6.3.12",
"@storybook/react": "^6.3.10",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/animejs": "^3.1.4",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.172",
"@types/ramda": "^0.27.60",
"@types/react": "^17.0.29",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.29.3",
"babel-plugin-react-remove-properties": "^0.3.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"jest-screenshot": "^0.3.5",
"less-loader": "7.3.0",
"lodash": "^4.17.21",
"postcss": "^8.3.6",
"postcss-url": "^10.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.53.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-less": "^1.1.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.7.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-url": "^3.0.1",
"rollup-plugin-visualizer": "^5.5.2",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5",
"typescript-plugin-css-modules": "^3.4.0"
},
"dependencies": {
"@svgdotjs/svg.js": "^3.1.1",
"animejs": "^3.2.1",
"rc-notification": "^4.5.7"
}
}