forked from ant-design-blazor/ant-design-blazor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.66 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
{
"name": "ant-design-blazor",
"version": "0.1.0",
"license": "MIT",
"description": "An enterprise-class UI components based on Ant Design and Blazor",
"keywords": [
"ant",
"design",
"blazor",
"ui",
"framework",
"frontend",
"WebAssembly"
],
"homepage": "https://antd.blz.bit.cat",
"repository": {
"type": "git",
"url": "https://github.com/ElderJames/ant-design-blazor"
},
"bugs": {
"url": "https://github.com/ElderJames/ant-design-blazor/issues"
},
"scripts": {
"start": "dotnet watch -p ./site/AntDesign.Docs.Server run -f net8",
"start:wasm": "dotnet watch -p ./site/AntDesign.Docs.Wasm run -f net8",
"build:lib": "gulp build:library",
"build:doc": "gulp build:preview --max-old-space-size=81920",
"preinstall": "dotnet tool restore",
"changelog": "node ./scripts/print-changelog",
"lint": "eslint --ext .ts ./components",
"lint-fix": "eslint --fix --ext .ts ./components"
},
"devDependencies": {
"@ant-design/colors": "^6.0.0",
"@babel/core": "^7.8.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/es6-promise": "^3.3.0",
"@types/fs-extra": "^9.0.5",
"@types/gulp": "^4.0.7",
"@types/less": "^3.0.3",
"@types/node": "^16.3.2",
"@types/resize-observer-browser": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"antd-theme-generator": "1.2.2",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.5.2",
"chalk": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"fs-extra": "^9.0.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.3.0",
"gulp-less": "^4.0.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"husky": "^4.2.3",
"inquirer": "^7.1.0",
"jquery": "^3.4.1",
"jsdom": "^16.5.0",
"less": "^4.1.0",
"less-plugin-clean-css": "^1.5.1",
"less-plugin-npm-import": "^2.1.0",
"less-vars-to-js": "^1.3.0",
"lint-staged": "^10.2.11",
"node-fetch": "^2.6.0",
"open": "^7.0.3",
"resolve-bin": "^0.4.0",
"simple-git": "^3.7.0",
"ts-node": "^10.8.0",
"tsify": "^4.0.2",
"typescript": "^3.8.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"antblazor.js-ts.tests": "file:tests/AntDesign.Tests.Js"
}
}