-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.19 KB
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
{
"name": "personal",
"version": "2.0.0",
"description": "Personal portfolio",
"main": "main.js",
"scripts": {
"clean": "rimraf dist",
"copy": "cp -v ./dist/* ./",
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production && npm run copy && npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nionata/nionata.github.io.git"
},
"author": "Nicholas Ionata",
"bugs": {
"url": "https://github.com/nionata/nionata.github.io/issues"
},
"homepage": "https://github.com/nionata/nionata.github.io#readme",
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-loader": "^8.0.6",
"babel-plugin-webpack-alias-7": "^0.1.1",
"css-loader": "^3.0.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.12.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"url-loader": "^4.1.0",
"vue": "^2.6.10",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {}
}