-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.06 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
{
"name": "mpd-web-api",
"version": "0.0.0-development",
"description": "Api for web-based MPD client",
"main": "lib/index.js",
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"clean": "rimraf lib",
"watch": "node esbuild.js --watch",
"build": "node esbuild.js",
"prepare": "husky install && yarn clean && yarn build",
"start": "yarn && node lib/index.js"
},
"types": "./typings/index.d.ts",
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,less,sass,scss}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexh250786313/mpd-web-api.git"
},
"keywords": [
"MPD",
"web",
"api"
],
"author": "hexh <250786313@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hexh250786313/mpd-web-api/issues"
},
"homepage": "https://github.com/hexh250786313/mpd-web-api#readme",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express-ws": "^3.0.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"esbuild": "^0.14.49",
"esbuild-plugin-copy": "^1.3.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"ohmyfetch": "^0.4.18",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"express-ws": "^5.0.2",
"lodash-es": "^4.17.21",
"mpd-api": "^1.1.1"
}
}