forked from munozcotelo-trainingcourses/curso-vue3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·36 lines (36 loc) · 1.75 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
{
"name": "vue3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"_build": "npm run generate:live; npm run generate:live-source",
"build": "npm run generate:dev",
"watch": "npm run clean:dist; NODE_ENV=production webpack --watch --progress --mode=development --config ./webpack/normal.config.js",
"clean:test": "rm -rf ./karma-typescript-bundle-*; rm -rf ./ts-node-*; rm -rf ./.nyc_output; rm -rf ./coverage/*",
"clean:dist": "find ./dist -type f -not -iname source-* -delete",
"clean:dist:source": "find ./dist -type f -iname source-* -delete",
"generate:dev": "npm run clean:dist; webpack --mode=development --progress --config ./webpack/normal.config.js",
"generate:dev-source": "npm run clean:dist:source; webpack --mode=development --config ./webpack/source.config.js",
"generate:watch-dev-source": "npm run clean:dist:source; webpack --watch --progress --mode=development --config ./webpack/source.config.js",
"generate:live": "npm run clean:dist; NODE_ENV=production webpack --mode=production --config ./webpack/normal.config.js",
"generate:live-source": "npm run clean:dist:source; NODE_ENV=production webpack --mode=production --config ./webpack/source.config.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"typescript": "4.5.5",
"vue": "3.2.31"
},
"devDependencies": {
"html-webpack-plugin": "5.5.0",
"ts-loader": "9.2.6",
"vue-loader": "16.8.3",
"webpack": "5.69.1",
"webpack-cli": "4.9.2",
"webpack-dev-middleware": "5.3.1",
"webpack-hot-middleware": "2.25.1",
"webpack-manifest-plugin": "4.1.1",
"webpack-merge": "5.8.0"
}
}