This repository has been 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
/
package.json
79 lines (79 loc) · 2.31 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
{
"name": "apiconsole-docker",
"version": "0.2.0",
"description": "Docker image of API Console",
"main": "app.js",
"license": "CPAL-1.0",
"authors": [
"Pawel Psztyc"
],
"contributors": [
"The Advanced REST client authors <[email protected]>"
],
"keywords": [
"api-console",
"docker"
],
"repository": {
"type": "git",
"url": "git+https://github.com/advanced-rest-client/apiconsole-docker.git"
},
"bugs": {
"url": "https://github.com/advanced-rest-client/apiconsole-docker/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/advanced-rest-client/apiconsole-docker#readme",
"dependencies": {
"amf-client-js": "^4.6.0",
"compression": "^1.7.4",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-winston": "^4.0.5",
"fs-extra": "^9.1.0",
"nconf": "^0.11.2",
"tmp": "^0.2.1",
"unzipper": "^0.10.11",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@types/node": "^14.14.22",
"@web/rollup-plugin-html": "^1.4.0",
"@web/rollup-plugin-polyfills-loader": "^1.0.3",
"api-console": "^6.4.1",
"eslint": "^7.18.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"lit-element": "^2.4.0",
"postcss": "^8.2.4",
"rimraf": "^3.0.2",
"rollup": "^2.38.0",
"rollup-plugin-cpy": "^2.0.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"uglify-js": "^3.12.5"
},
"scripts": {
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint": "npm run lint:eslint",
"format": "npm run format:eslint",
"test": "exit 0",
"start": "node app.js",
"start:dev": "NODE_ENV=development node app.js",
"build": "rimraf dist && rollup -c rollup.config.js",
"gke:build": "docker build -t gcr.io/api-console-a6952/app:$npm_package_version .",
"gke:deploy": "docker -- push gcr.io/api-console-a6952/app:$npm_package_version",
"prepare": "node tasks/prepare-vendor.js"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}