-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.45 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": "codecon-gather-api",
"version": "1.0.0",
"description": "An API that interacts with Gather.town API and customizes the user experience on the CodeCon Tech Event",
"main": "index.js",
"engines": {
"node": "14.17.6"
},
"scripts": {
"start": "yarn build && node dist/src/index.js",
"build": "tsc",
"dev": "ts-node src/index.ts",
"dev:watch": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "jest",
"reinstall": "rm -rf node_modules && rm yarn.lock && yarn"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@gathertown/gather-game-client": "^37.0.1",
"@gathertown/gather-game-common": "^29.0.1",
"axios": "^0.25.0",
"dotenv": "^16.0.0",
"isomorphic-ws": "^4.0.1",
"mongoose": "^6.2.2",
"openai": "^3.2.1",
"ws": "^8.5.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.2",
"@types/node": "^16.7.10",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"babel-jest": "^29.5.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.5.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.5.5"
}
}