forked from galacticcouncil/api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.46 KB
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.46 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
{
"name": "api-gen",
"version": "1.0.0",
"private": false,
"description": "API Gen",
"author": "Pavol Noha <pavol.noha@gmail.com>",
"scripts": {
"build": "node ./esbuild.dev.mjs",
"build:watch": "ESBUILD_WATCH=true node ./esbuild.dev.mjs",
"build:github": "BASE_HREF=/api-docs/ node ./esbuild.prod.mjs",
"build:prod": "node ./esbuild.prod.mjs",
"serve": "wds --node-resolve --watch --app-index index.html --open",
"cleanup": "rimraf out && rimraf dist",
"dev": "rimraf out & npm run build:watch & npm run serve",
"copy:assets": "cp -R ./assets/ ./dist/assets/ && cp ./dist/index.html ./dist/404.html",
"package:github": "rimraf dist && npm run build:github && npm run copy:assets",
"package:prod": "rimraf dist && npm run build:prod && npm run copy:assets"
},
"devDependencies": {
"@craftamap/esbuild-plugin-html": "^0.4.0",
"@web/dev-server": "^0.1.17",
"@web/dev-server-esbuild": "^0.3.2",
"esbuild": "^0.14.53",
"esbuild-wasm": "^0.15.2",
"node-html-parser": "^5.4.2-0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@lit/reactive-element": "^1.0.0",
"@polkadot/api": "^9.0.1",
"@thi.ng/atom": "^5.1.3",
"@vaadin/router": "^1.7.4",
"autosuggest-highlight": "^3.3.4",
"capi": "^0.1.0-beta.12",
"lit": "^2.0.0",
"lit-element": "^3.0.0",
"lit-html": "^2.0.0",
"short-uuid": "^4.2.0",
"showdown": "^2.1.0"
}
}