-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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": "vrc-osc-spotify",
"version": "0.0.1",
"description": "Small Spotify integration into VRChat's chatbox OSC.",
"main": "src/index.ts",
"repository": "https://github.com/bddvlpr/vrc-osc-spotify",
"author": "Luna Simons <luna@bddvlpr.com>",
"license": "BSD-3-Clause",
"private": true,
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"commit": "cz",
"lint": "prettier --end-of-line=lf --check --plugin-search-dir=. . && eslint .",
"format": "prettier --end-of-line=lf --write --plugin-search-dir=. . && eslint . --fix"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"dependencies": {
"axios": "^0.27.2",
"express": "^4.18.1",
"node-osc": "^8.0.5",
"node-persist": "^3.1.0",
"spotify-web-api-node": "^5.0.2",
"zod": "^3.19.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.7.13",
"@types/node-osc": "^6.0.0",
"@types/node-persist": "^3.1.2",
"@types/spotify-web-api-node": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"commitizen": "^4.2.5",
"dotenv": "^16.0.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-standard": "^5.0.0",
"git-cz": "^4.9.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}