-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 748 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 748 Bytes
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
{
"name": "mini-vue",
"version": "1.0.0",
"description": "手动实现mini-vue",
"main": "src/index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"dev": "webpack --watch",
"format": "prettier --write ."
},
"keywords": [
"mini-vue",
"vue",
"vue解析"
],
"author": "azin-cn",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"babel-jest": "^26.6.3",
"eslint": "^7.31.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.5",
"prettier": "2.3.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}