-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (40 loc) · 1.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
{
"name": "vrchatfriendshipvisualizer",
"version": "1.0.0",
"description": "VRChat friendship network visualization tool",
"main": "src/app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon --exec ts-node src/app.ts --ignore 'data/*' --ignore 'public/*'",
"build": "tsc",
"format": "npx biome format --write .",
"lint": "npx biome lint ."
},
"keywords": ["vrchat", "network", "visualization"],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.7",
"express": "^4.21.2",
"form-data": "^4.0.1",
"fs-extra": "^11.2.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/express": "^5.0.0",
"@types/form-data": "^2.5.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.2",
"@types/node-fetch": "^2.6.12",
"globals": "^15.13.0",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"nodemonConfig": {
"ignore": ["data/*", "public/*", "*.json"],
"watch": ["src/"],
"ext": "js,ts"
}
}