This repository was archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.34 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
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
{
"name": "api-console-io",
"version": "0.2.12",
"description": "API Console official web site",
"author": "api-console-io",
"license": "CC BY 2.0",
"main": "app.js",
"type": "module",
"dependencies": {
"@api-components/amf-web-api": "^0.1.3",
"@google-cloud/debug-agent": "^5.1.3",
"@google-cloud/logging-winston": "^4.0.4",
"@google-cloud/trace-agent": "^5.1.3",
"compression": "^1.7.4",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-winston": "^4.1.0",
"fs-extra": "^10.0.0",
"nconf": "^0.11.2",
"serve-static": "^1.14.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@open-wc/building-rollup": "^2.0.1",
"@open-wc/eslint-config": "^7.0.0",
"@open-wc/prettier-config": "^1.1.0",
"@types/compression": "^1.7.0",
"@types/fs-extra": "^9.0.8",
"@types/koa__cors": "^3.1.1",
"@types/nconf": "^0.10.1",
"@web/dev-server": "^0.1.29",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.40.0",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^4.2.2",
"typescript-lit-html-plugin": "^0.9.0",
"uglify-js": "^3.13.0",
"webpack-merge": "^5.7.3"
},
"scripts": {
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"lint": "npm run lint:eslint && npm run lint:prettier",
"format": "npm run format:eslint && npm run format:prettier",
"test": "exit 0",
"start": "node ${SCRIPT:-app.js}",
"start:api": "node --inspect=9224 api.js --PORT=8081",
"start:demo:dev": "cd packages/demo/ && web-dev-server --app-index index.html --node-resolve --open --watch",
"start:demo:build": "cd demo-dist && web-dev-server --open",
"start:dev": "cd packages/main/ && web-dev-server --app-index index.html --node-resolve --open --watch",
"start:docs": "mkdocs serve",
"build": "npm run build:www && npm run build:demo && npm run build:docs",
"build:www": "rimraf www-dist && rollup -c packages/main/rollup.config.js",
"build:demo": "rimraf demo-dist && rollup -c packages/demo/rollup.config.js",
"build:docs": "mkdocs build",
"start:www:build": "node app.js --PORT=8081",
"gke:build": "docker build -t gcr.io/api-console-a6952/api-console-io:$npm_package_version .",
"gke:deploy": "docker -- push gcr.io/api-console-a6952/api-console-io:$npm_package_version",
"prepare": "node packages/demo/tasks/prepare.js"
},
"repository": {
"type": "git",
"url": "git://github.com/advanced-rest-client/api-console-io.git"
},
"bugs": {
"url": "https://github.com/advanced-rest-client/api-console-io/issues",
"email": "[email protected]"
},
"authors": [
"Pawel Psztyc",
"The Advanced REST client authors <[email protected]>"
],
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
],
"rules": {
"no-plusplus": "off",
"no-await-in-loop": "off",
"no-continue": "off"
}
},
"prettier": "@open-wc/prettier-config",
"resolutions": {
"terser": "4.6.7"
},
"engines": {
"node": ">=16.14.0"
}
}