-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "@ant-design-vue/vue-jsx-hot-loader",
"version": "0.1.4",
"description": "Tweak Vue components written in JSX in real time.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"test": "jest --coverage",
"dev-example": "webpack-dev-server --config example/webpack.config.js",
"prepublishOnly": "tsc"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Amour1688/vue-jsx-hot-loader.git"
},
"keywords": [
"vue",
"jsx",
"hmr"
],
"author": "Amour1688",
"license": "MIT",
"bugs": {
"url": "https://github.com/Amour1688/vue-jsx-hot-loader/issues"
},
"homepage": "https://github.com/Amour1688/vue-jsx-hot-loader#readme",
"dependencies": {
"@babel/parser": "^7.0.0",
"@babel/traverse": "^7.0.0",
"hash-sum": "^2.0.0",
"loader-utils": "^2.0.0",
"lodash-es": "^4.17.20"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@types/loader-utils": "^2.0.1",
"@vue/babel-plugin-jsx": "^1.0.0",
"babel-loader": "^8.2.2",
"jest": "^26.6.3",
"typescript": "^4.0.3",
"vue": "^3.0.5",
"webpack": "^4.44.2",
"webpack-cli": "^3.0.0",
"webpack-dev-server": "^3.11.1"
}
}