forked from JackieScorpio/nutui-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.27 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
{
"name": "@nutui/nutui-docs",
"version": "1.0.0",
"description": "京东风格的轻量级移动端官网",
"keywords": [
"nutui",
"nutui2",
"nutui3",
"vue",
"vue3",
"webpack",
"vue component",
"vue3 component",
"vite",
"jdc",
"jdcfe"
],
"author": "jdcfe",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"README.md",
"package.json",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"dev": "tsc && vite --force",
"dev:react": "tsc && vite --force --config vite.config.react.ts",
"dev:jdt": "tsc && vite --force --config vite.config.jdt.ts",
"build": "vite build",
"build:oss": "vite build --base=/nutui/3x/",
"build:react": "vite build --config vite.config.react.ts",
"build:jdt": "vite build --config vite.config.jdt.ts",
"build:oss:react": "vite build --base=/nutui/react/",
"build:gh-pages": "vite build --base=/nutui-docs/3x/",
"build:gh-pages:react": "vite build --config vite.config.react.ts --base=/nutui-docs/react/",
"upload": "npm run build:oss && npm run build:oss:react && node ./jd/upload.js",
"serve": "vite preview",
"prepare": "husky install",
"test": "jest",
"codeformat": "prettier --write .",
"copydoc": "node ./scripts/copydoc.js"
},
"dependencies": {
"@nutui/nutui": "^3.1.18",
"sass": "~1.32.0",
"vue-router": "^4.0.11"
},
"devDependencies": {
"@commitlint/cli": "^10.0.0",
"@commitlint/config-conventional": "^10.0.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"@vitejs/plugin-legacy": "^1.4.0",
"@vitejs/plugin-vue": "^1.2.2",
"@vue/compiler-sfc": "^3.0.11",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.6",
"autoprefixer": "^10.3.4",
"axios": "^0.21.0",
"eslint": "^7.23.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.8.0",
"eslint-visitor-keys": "2",
"fs-extra": "^9.1.0",
"highlight.js": "^10.3.1",
"husky": "^6.0.0",
"inquirer": "^8.2.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.0",
"lzutf8": "0.6.0",
"markdown-it-container": "^3.0.0",
"prettier": "^2.0.0",
"remark-codesandbox": "^0.10.1",
"standard-version": "^9.3.0",
"swiper": "6.5.1",
"transliteration": "^2.2.0",
"ts-jest": "^26.5.5",
"typescript": "^4.1.5",
"vite": "^2.9.14",
"vite-plugin-md": "^0.11.0",
"vue": "^3.2.19",
"vue-jest": "^5.0.0-alpha.7"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript/recommended",
"@vue/prettier",
"@vue/prettier/@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"vue/no-unused-components": "off",
"no-debugger": "off"
}
},
"lint-staged": {
"*.md": "prettier --write",
"*.{ts,tsx,js,vue,scss}": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://github.com/jdf2e/nutui-docs.git"
}
}