-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.95 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
{
"name": "ResponseHub",
"version": "1.0.0",
"description": "",
"engines": {
"node": "20.x"
},
"scripts": {
"build": "npm run build:typescript && npm run build:scss && bash copy.sh",
"build:scss": "sass src/scss/main.scss extension/main.css --no-source-map && cp extension/main.css docs/main.css",
"build:typescript": "esbuild src/app/index.ts --bundle --outdir=extension --minify --target=chrome80,safari13 --loader:.ts=ts",
"dev": "run-p watch watch:proxy start:www start:test-server",
"watch": "run-p watch:scss watch:typescript watch:html",
"watch:scss": "nodemon --watch src/scss --ext scss, --exec npm run build:scss",
"watch:typescript": "nodemon --watch src/app --ext ts, --exec npm run build:typescript",
"watch:html": "nodemon --watch src --ext html, --exec bash copy.sh",
"watch:proxy": "nodemon proxy/server.js",
"start:proxy": "node proxy/server.js",
"start:test-server": "nodemon test-server.js",
"start:www": "browser-sync start --serveStatic=\"docs\" --files=\"docs/*\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.19",
"browser-sync": "^3.0.2",
"chrome-types": "^0.1.231",
"esbuild": "^0.19.4",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"sass": "^1.69.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/commands": "^6.0.0",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/language": "^6.0.0",
"@codemirror/lint": "^6.0.0",
"@codemirror/search": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/highlight": "^1.0.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"focus-trap": "^7.5.4",
"graphql": "^16.5.0",
"graphql-language-service": "^5.2.1",
"highlight.js": "^11.9.0",
"http-proxy-middleware": "^2.0.6",
"prettier": "^3.1.0"
}
}