-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.46 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
{
"name": "armview-web",
"version": "0.0.5",
"description": "Standalone web version of armview-vscode extension",
"repository": {
"type": "git",
"url": "https://github.com/benc-uk/armview-web"
},
"author": "Ben Coleman",
"license": "MIT",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run copy-assets",
"serve": "node dist/src/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Server,Assets\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\" \"npm run watch-assets\"",
"build-ts": "tsc",
"lint": "eslint --ext .ts src",
"watch-ts": "tsc -w",
"copy-assets": "node copyStaticAssets.js",
"watch-assets": "nodemon -w src/public -e css,png,js copyStaticAssets.js"
},
"dependencies": {
"body-parser": "^1.19.1",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-fileupload": "^1.3.1",
"isomorphic-fetch": "^3.0.0",
"memory-cache": "^0.2.0",
"node-cache": "^5.1.2",
"uuid": "^8.3.2",
"vscode-extension-telemetry": "^0.1.6",
"jsonc-parser": "^3.0.0"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/node": "^17.0.15",
"@types/vscode": "^1.64.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"concurrently": "^7.0.0",
"eslint": "^8.8.0",
"shelljs": "^0.8.5",
"typescript": "^4.5.5"
}
}