-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 5.93 KB
/
package.json
File metadata and controls
143 lines (143 loc) · 5.93 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "qcobjects-docs",
"version": "2.3.9",
"description": "The official app and website for documentation of QCObjects",
"targets": {
"default": {
"source": "build/index.html",
"distDir": "public"
}
},
"main": "public/js/init.js",
"type": "commonjs",
"types": "src/**/*.d.ts",
"browserslist": "> 0.5%, last 2 versions, not dead",
"watch": {
"start": {
"patterns": [
"src"
],
"extensions": "ts,html,css",
"quiet": true,
"legacyWatch": true,
"delay": 2500,
"runOnChangeOnly": false
}
},
"scripts": {
"test": "(npm run lint && (npx jasmine))",
"lint": "(npx eslint \"src/**/*.ts\" --fix --ext ts)",
"sync": "git add . && git commit -am ",
"preversion": "npm i --upgrade && npm test",
"postversion": "git push && git push --tags",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"start": "npm run createcert && npm run serve",
"start:parcel": "npx parcel --dist-dir public",
"serve": "npx qcobjects-server",
"server": "npm run serve",
"collab": "npx qcobjects-collab",
"shell": "npx qcobjects shell",
"createcert": "qcobjects-createcert",
"v-patch": "qcobjects v-patch",
"v-minor": "qcobjects v-minor",
"v-major": "qcobjects v-major",
"qcobjects": "npx qcobjects",
"cli": "qcobjects",
"http-server": "qcobjects-http-server",
"gae-server": "qcobjects-gae-server",
"azure-server": "npm start",
"aws-server": "npm start",
"do-server": "npm start",
"minify:css": "(npx esbuild build/css/*.css build/css/**/*.css --outdir=public/css --keep-names --minify --global-name=global --sourcemap --loader:.svg=file)",
"build:docker": "docker build -t qcobjects/qcobjects-newapp:latest .",
"build:static": "npx qcobjects-cli publish:static src/ build/ --exclude js --exclude=.DS_Store",
"build:ts": "npm test && npx tsc",
"build:ts-types": "npx tsc --project tsconfig.d.json",
"build:netlify": "npm run publish:web",
"build": "npm run publish:web",
"publish:static": "(npx qcobjects publish:static build/ public/ --exclude js --exclude=.DS_Store) && npm run minify:css",
"publish:ios": "qcobjects publish ios",
"publish:android": "qcobjects publish android",
"publish:electron": "qcobjects publish electron",
"publish:esbuild": "npx esbuild build/js/*.js build/js/**/*.js --bundle --outdir=public/js --keep-names --minify --global-name=global --sourcemap",
"publish:parcel": "npx parcel build",
"publish:web": "npm run build:static && npm run build:ts && npm run publish:static && npm run publish:esbuild",
"publish:docker": "docker push qcobjects/qcobjects-newapp:latest",
"deploy:docker": "npm run build:docker && npm run publish:docker",
"docker-server": "docker run -p 8080:8080 -p 8443:8443 -d --name qcobjects-newapp qcobjects/qcobjects-newapp",
"prepare": "node -e \"if(!require('fs').existsSync('.git')){process.exit(0)}\" || npx -y husky install",
"prestart": "npm run publish:web",
"cli:help": "qcobjects --help",
"start:dev": "npm-watch start",
"build:dev": "npm-watch build",
"tree": "tree -d --gitignore",
"lighthouse": "lighthouse https://127.0.0.1:8443/ --quiet --chrome-flags=\"--ignore-certificate-errors\" --budget-path=./lighthouse-budget.json --output html --output-path ./lighthouse/lighthouse-report.html --view"
},
"repository": {
"type": "git",
"url": "https://github.com/QuickCorp/QCObjects-DOC.git"
},
"keywords": [
"qcobjects",
"newapp",
"js",
"javascript"
],
"author": "Jean Machuca (correojean@gmail.com)",
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@parcel/config-default": "^2.8.3",
"@parcel/packager-raw-url": "^2.8.3",
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-tsc": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@parcel/transformer-webmanifest": "^2.8.3",
"@parcel/validator-typescript": "^2.8.3",
"@types/qcobjects": "github:QCObjects/-types-qcobjects",
"@types/qcobjects-sdk": "github:QCObjects/-types-qcobjects-sdk",
"@types/showdown": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-qcobjects": "^0.0.26",
"eslint-config-qcobjects-typescript": "^2.4.5",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"hint": "^2.0.0",
"husky": "^8.0.3",
"jasmine": "^3.99.0",
"lighthouse": "^10.1.1",
"lint-staged": "^13.2.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.8.3",
"process": "^0.11.10",
"qcobjects-cli": "^2.4.52",
"qcobjects-command-publish-static": "^1.0.2",
"qcobjects-tsconfig": "^2.4.10",
"semistandard": "^16.0.1",
"systemjs": "^6.14.1",
"typescript": "^5.0.4"
},
"dependencies": {
"grunt": "^1.4.1",
"grunt-contrib-jasmine": "^4.0.0",
"npm-watch": "^0.11.0",
"nyc": "^15.1.0",
"qcobjects": "^2.4.89",
"qcobjects-handler-hello-world": "^1.0.0",
"qcobjects-sdk": "^2.4.59",
"showdown": "^2.1.0"
},
"engines": {
"npm": ">=8",
"node": ">=16"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}