forked from sirDonovan/Lanette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.8 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
{
"name": "lanette",
"version": "0.0.1",
"description": "A bot for Pokemon Showdown",
"main": "build/app.js",
"scripts": {
"build": "node build.js",
"gameserver": "npm run build && node --enable-source-maps build/src/game-server/server.js",
"lint": "eslint \"**/*.ts\" --cache",
"localstart": "npm run build && node --enable-source-maps --report-uncaught-exception --report-on-fatalerror --expose-gc build/app.js -- --offline",
"localtest": "npm run lint && npm run build && npm run tsc && npm run mocha -- --offline",
"mocha": "node --enable-source-maps --max-old-space-size=2048 build/mocha.js",
"start": "npm run build && node --enable-source-maps --report-uncaught-exception --report-on-fatalerror build/app.js",
"tempconfig": "npm run build && node --enable-source-maps --report-uncaught-exception --report-on-fatalerror --expose-gc build/temp-config.js",
"test": "npm run lint && npm run build && npm run tsc && npm run mocha",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sirDonovan/Lanette.git"
},
"author": "Quinton Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/sirDonovan/Lanette/issues"
},
"homepage": "https://github.com/sirDonovan/Lanette#readme",
"dependencies": {
"@types/eslint": "8.37.0",
"@types/mocha": "10.0.1",
"@types/node": "18.15.11",
"@types/ws": "8.5.4",
"bufferutil": "4.0.7",
"esbuild": "0.17.15",
"typescript": "5.0.3",
"utf-8-validate": "6.0.3",
"ws": "8.13.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"eslint": "8.37.0",
"mocha": "10.2.0"
},
"optionalDependencies": {
"heapdump": "^0.3.15",
"ts-loader": "^9.4.2",
"webpack": "^5.77.0"
}
}