-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1004 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1004 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
34
35
36
{
"name": "reactivity",
"version": "1.0.0",
"description": "手写Vue3的reactivity库",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node build/server.js"
},
"devDependencies": {
"@vue/shared": "3.0.4",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-es2015": "^6.24.1",
"express": "^4.17.1",
"ts-loader": "^8.0.7",
"typescript": "^4.0.5",
"webpack": "^4.44.2",
"webpack-dev-middleware": "^3.7.1",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^5.3.0",
"html-webpack-plugin": "^4.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a7650/reactivity.git"
},
"author": "zhangzp",
"license": "MIT",
"bugs": {
"url": "https://github.com/a7650/reactivity/issues"
},
"homepage": "https://github.com/a7650/reactivity#readme"
}