-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
117 lines (117 loc) · 3.39 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
{
"name": "chowa",
"version": "1.1.3",
"description": "UI component library based on React",
"main": "dist/chowa.js",
"typings": "es/index.d.ts",
"module": "es/index.js",
"style": "dist/chowa.css",
"scripts": {
"iconfont": "cwfont compile",
"dev": "npm run iconfont && webpack-dev-server --config webpack.config.dev.js",
"build": "npm run iconfont && gulp && webpack --config webpack.config.prod.js",
"stylelint": "stylelint components/*/style/*.scss styles/*.scss styles/*/*.scss",
"eslint": "eslint components/*/*.{ts,tsx} components/*.ts components/*/style/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chowa/chowa.git"
},
"keywords": [
"React",
"React UI library",
"Typescript",
"webpack",
"frameworks",
"gulp",
"UI",
"UI Toolkit",
"UI library",
"chowa",
"web components",
"components"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/chowa/chowa/issues"
},
"homepage": "https://github.com/chowa/chowa#readme",
"browserslist": [
"iOS >= 8",
"Firefox >= 20",
"Android > 4.4",
"ie > 9"
],
"engines": {
"node": ">=9.0.0",
"npm": ">=3.0.0"
},
"dependencies": {
"classnames": "^2.2.6",
"moment": "^2.24.0",
"prismjs": "^1.20.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^16.13.1",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.9.2",
"@types/classnames": "^2.2.10",
"@types/prismjs": "^1.16.0",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"cssnano": "^4.1.10",
"cwfont": "^1.1.4",
"eslint": "^6.8.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-chowa-standard": "^1.1.0",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^6.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"gulp": "^4.0.2",
"gulp-banner": "^0.1.3",
"gulp-clean": "^0.4.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"html-webpack-plugin": "^4.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^7.0.27",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.4",
"stylelint": "^13.3.2",
"stylelint-plugin-chowa-standard": "^1.1.0",
"stylelint-scss": "^3.17.0",
"stylelint-webpack-plugin": "^1.2.3",
"terser-webpack-plugin": "^2.3.5",
"ts-loader": "^7.0.0",
"typescript": "^3.8.3",
"url-loader": "^4.1.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
}
}