-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.06 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
{
"name": "simpleshow-cockpit",
"version": "1.0.0",
"private": true,
"description": "",
"license": "UNLICENSED",
"author": "Nicolas Reibnitz <[email protected]> (http://daslaboritory.com/)",
"main": "index.js",
"scripts": {
"build": "npm run prod",
"dev": "npm-run-all -p dev:*",
"dev:vue2": "cd __FRONTEND-VUE2__ && npx mix",
"dev:vue3": "cd __FRONTEND-VUE3__ && npx mix",
"gitlog": "../simpleshow-cockpit-addendum/_scripts/git-log2json-master/git-log2json > ./public/gitlog.json",
"hot": "npm-run-all -p hot:*",
"hot:vue2": "cd __FRONTEND-VUE2__ && npx mix watch --hot",
"hot:vue3": "cd __FRONTEND-VUE3__ && npx mix watch --hot",
"prod": "npm-run-all -s gitlog prod:* && json-concat public/mix-manifest-vue2.json public/mix-manifest-vue3.json public/mix-manifest.json",
"prod:vue2": "cd __FRONTEND-VUE2__ && npx mix --production",
"prod:vue3": "cd __FRONTEND-VUE3__ && npx mix --production"
},
"dependencies": {
"json-concat": "^0.0.1"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"directories": {
"test": "tests"
}
}