This repository has been archived by the owner on Apr 13, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
package.json
56 lines (56 loc) · 1.59 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "vuegg",
"version": "0.19.3",
"description": "vuejs GUI generator",
"author": "alxpez",
"license": "MIT",
"scripts": {
"oauth": "node oauth-config.js",
"vuegg": "npm run install:all && npm run build && npm run start",
"vuegg:test": "npm run build && npm run start",
"install:all": "npm run install:client && npm run install:server",
"install:client": "cd client && npm install && npm rebuild node-sass",
"install:server": "cd server && npm install",
"client": "cd client && npm run dev",
"server": "cd server && npm run dev",
"build": "cd client && npm run build",
"start": "cd server && npm run start",
"deploy": "now -f && now alias",
"pre-release": "standard-version --dry-run",
"release": "standard-version && git push --follow-tags origin master",
"commit": "commit",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:vuegg/vuegg.git"
},
"bugs": {
"url": "https://github.com/vuegg/vuegg/issues"
},
"homepage": "https://github.com/vuegg/vuegg#README",
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@commitlint/prompt-cli": "^6.1.3",
"dotenv": "^4.0.0",
"husky": "^0.14.3",
"inquirer": "^5.2.0",
"shelljs": "^0.8.2",
"standard-version": "^4.3.0"
}
}