-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "voxelservices",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"lint": "eslint **/*.ts",
"watch": "tsc -w",
"prestart": "npm run build && func extensions install",
"start:host": "func start",
"start": "npm run start:host & npm run watch",
"build:production": "npm run prestart && npm prune --production",
"test": "npm run lint",
"build:script": "tsc -p lib/tsconfig.json",
"run:script": "node lib/generate.js"
},
"hooks": {
"pre-commit": "npm run lint"
},
"dependencies": {
"@xmcl/mod-parser": "^2.0.5",
"@xmcl/unzip": "^1.1.3",
"azure-storage": "^2.10.3",
"cheerio": "^1.0.0-rc.3",
"got": "^10.5.7",
"semver": "^7.1.3",
"ssh2": "^0.8.8",
"url-join": "^4.0.1"
},
"devDependencies": {
"@azure/functions": "^1.2.0",
"@types/cheerio": "^0.22.16",
"@types/got": "9.6.9",
"@types/long": "^4.0.1",
"@types/node": "^13.7.1",
"@types/semver": "^7.1.0",
"@types/ssh2": "^0.5.40",
"@types/url-join": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"typescript": "^3.8.3"
}
}