-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.05 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
{
"name": "tesui",
"version": "0.0.2",
"description": "A Component Library base on Tes.",
"main": "lib/tes-ui.common.js",
"typings": "lib/types/index.d.ts",
"style": "lib/theme/index.css",
"scripts": {
"build:file": "node scripts/buildEntry",
"build:theme": "node scripts/buildCssEntry && gulp build --gulpfile scripts/gulpfile.js",
"build:components": "webpack --config scripts/webpack.component.js --progress",
"dist": "npm run clean && npm run build:file && webpack --config scripts/webpack.conf.js && webpack --config scripts/webpack.common.js && webpack --config scripts/webpack.component.js && npm run build:theme",
"clean": "rimraf lib ",
"site": "webpack --config example/webpack.config.js",
"site:dev": "webpack server --config example/webpack.config.js"
},
"keywords": [
"Tes",
"ts",
"UI"
],
"author": "li1615882553",
"license": "MIT",
"bugs": {
"url": "https://github.com/li1615882553/TesUI/issues"
},
"dependencies": {
"@types/classnames": "^2.3.1",
"classnames": "^2.3.1",
"tes-work": "^0.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@types/marked": "^4.0.6",
"@types/node": "^18.7.14",
"@types/prismjs": "^1.26.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"express": "^4.18.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-cssmin": "^0.2.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"highlight": "^0.2.4",
"highlight.js": "^11.6.0",
"html-webpack-plugin": "^5.5.0",
"marked": "^4.1.0",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.1",
"prismjs": "^1.29.0",
"raw-loader": "^4.0.2",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^5.3.3",
"webpack-dev-server": "^4.10.1",
"webpack-hot-middleware": "^2.25.2",
"webpack-merge": "^5.8.0"
}
}