-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.94 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
{
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"effect": "3.1.2",
"eslint": "^8.0.0",
"express": "^4.18.2",
"fast-check": "^3.13.2",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.8",
"nodemon": "^3.0.2",
"openai": "^4.26.0",
"pg": "^8.11.3",
"react": "^16.8",
"react-dom": "^16.8",
"react-icons": "^5.0.1",
"react-router-dom": "^6.21.1",
"typescript": "^5.3.3",
"ws": "^8.16.0"
},
"name": "ts-api",
"version": "1.0.0",
"description": "Victorious game server",
"main": "app.js",
"scripts": {
"build": "yarn build:client && yarn build:server",
"build:server": "cd ./server && npx tsc",
"build:client": "cd ./client && yarn && npx vite build",
"start": "node server/dist/server/src/server.js",
"ci": "start-server-and-test start http://localhost:3000 ci:test ",
"regen": "rm -rf ./client/node_modules && cd ./client && yarn && npx vite",
"dev:client": "npx vite",
"dev:server": "NODE_ENV=development TEST_PASSWORD=test nodemon --exec ts-node ./server/src/server.ts",
"ci:test": "TEST_PASSWORD=test DEV_PG_NAME=postgres vitest --fileParallelism=false run",
"test": "TEST_PASSWORD=test DEV_PG_NAME=dominion_pg_test vitest --fileParallelism=false run"
},
"author": "duckRabbitPy",
"license": "ISC",
"devDependencies": {
"@effect/schema": "^0.66",
"@total-typescript/ts-reset": "^0.5.1",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.20",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.6",
"@types/nodemailer": "^6.4.14",
"@types/pg": "^8.10.2",
"@types/websocket": "^1.0.10",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@wll8/express-ws": "^1.0.5",
"start-server-and-test": "^2.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.1.3"
}
}