-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
37
38
39
40
41
42
{
"name": "gdgcebu.org",
"version": "1.0.0",
"description": "Google Developers Group (GDG) Cebu Website",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"prebuild": "rm -rf build",
"build": "NODE_ENV=production webpack",
"serve": "webpack-dev-server --history-api-fallback --hot --write-to-disk"
},
"author": "Arnelle Balane <arnellebalane@gmail.com> (https://arnellebalane.com/)",
"license": "MIT",
"dependencies": {
"dayjs": "1.8.16",
"dotenv": "8.2.0",
"vue": "2.6.10",
"vue-router": "3.1.3",
"vuex": "3.1.1"
},
"devDependencies": {
"commitizen": "4.0.3",
"copy-webpack-plugin": "5.0.4",
"css-loader": "3.2.0",
"cz-conventional-changelog": "3.0.2",
"file-loader": "4.2.0",
"html-webpack-plugin": "3.2.0",
"imagemin-webpack-plugin": "2.4.2",
"style-loader": "1.0.0",
"url-loader": "2.1.0",
"vue-loader": "15.7.1",
"vue-template-compiler": "2.6.10",
"webpack": "4.41.0",
"webpack-cli": "3.3.9",
"webpack-dev-server": "3.8.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}