-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
126 lines (126 loc) · 3.78 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
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "hana-ui",
"version": "1.3.4",
"description": "A React UIKit with fresh nijigen style.",
"keywords": [
"hana",
"ui",
"react",
"nijigen",
"anime"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "webpack serve --config webpack.dev.config.js",
"build": "babel src --out-dir dist --copy-files",
"demo-build": "npm run demo-build-client && npm run demo-build-server && python3 ./demo/sitemap.py",
"demo-build-client": "webpack -p --config ./webpack.demo-build.config.js",
"demo-build-server": "webpack --config ./webpack.demo-server.config.js",
"demo-run": "node demo/server.js",
"prepublishOnly": "npm run build"
},
"authors": [
{
"name": "dtysky",
"email": "[email protected]"
},
{
"name": "rhyme",
"email": "[email protected]"
},
{
"name": "lanz",
"email": "[email protected]"
}
],
"files": [
"src",
"dist",
"themes",
"hana-style.scss",
"README.md"
],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.20.7",
"classnames": "^2.2.5",
"d3-ease": "^1.0.3",
"d3-interpolate": "^1.1.6",
"immutability-helper": "^2.6.2",
"lodash": "^4.17.4",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-transition-group": "^2.2.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.0",
"@babel/plugin-proposal-decorators": "^7.19.0",
"@babel/plugin-proposal-function-bind": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/plugin-transform-spread": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@babel/preset-react": "^7.0.0-beta.40",
"@babel/register": "^7.18.9",
"@types/react": "^16.2.0",
"@webpack-cli/serve": "^2.0.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^8.2.5",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-syntax-flow": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-react-display-name": "^6.25.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-require-ignore": "0.1.1",
"babel-plugin-typecheck": "^3.9.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^0.28.8",
"doctrine": "^2.0.2",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"express": "4.16.2",
"file-loader": "^1.1.6",
"highlight.js": "9.12.0",
"html-webpack-plugin": "^5.5.0",
"ignore-loader": "^0.1.2",
"marked": "^0.3.7",
"mini-css-extract-plugin": "^2.7.1",
"multer": "^1.3.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"postcss": "^8.4.19",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^7.8.3",
"randomcolor": "^0.5.3",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-docgen": "^2.20.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.2.1",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"sass-resources-loader": "^2.2.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"zlib": "^1.0.5"
}
}