-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 927 Bytes
/
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
{
"name": "{{project-name}}",
"version": "0.1.0",
"description": "{{project-description}}",
"scripts": {
"start": "webpack-cli serve",
"serve": "serve dist -p 3002",
"build": "webpack --mode production --env prod=true",
"clean": "rm -rf dist"
},
"config": {
"shortname": "{{project-name}}",
"publicPath": "https://lenna.app/lenna-plugins/{{project-name}}/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.15.0",
"babel-loader": "^8.1.0",
"serve": "^11.3.2",
"vue": "^3.2.6"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.2.6",
"css-loader": "^5.2.7",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^1.6.2",
"url-loader": "^4.1.1",
"vue-loader": "^16.5.0",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
}
}