-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.8 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"scripts": {
"dev": "nodemon -V --watch src/ --ignore src/client src/server/index.ts",
"build": "npm run build-server && npm run build-client",
"build-server": "ts-node src/scripts/remove_deleted.ts && tsc -b",
"build-client": "NODE_ENV=production API_HOST=\"https://api.choochoo.games\" SOCKET_HOST=\"https://api.choochoo.games\" node bin/scripts/client_build.js",
"prod": "node bin/server/index.js",
"deploy": "./src/scripts/deploy.sh",
"deploy-client": "./src/scripts/deploy_client.sh",
"deploy-server": "./src/scripts/deploy_server.sh",
"create-migration": "./src/scripts/create_migration.sh",
"create-map": "ts-node ./src/scripts/create_map.ts",
"generate": "ts-node ./src/scripts/generate_registries.ts",
"package": "npm run build && mkdir ./builds && tar -cvzf ./builds/server.tar.gz ./bin",
"lint": "eslint src/ && knip",
"format": "prettier src --write",
"migrate": "node bin/scripts/migrations up",
"migrate-testdb": "export $(cat .testenv.sh | xargs) && npm run migrate-testdb-direct",
"migrate-testdb-direct": "node bin/scripts/migrations up",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.mjs",
"test-watch": "nodemon -V --ext ts,tsx --watch src/ --exec 'npm run test'",
"e2e": "export $(cat .testenv.sh | xargs) && npm run e2e-test",
"e2e-test": "ts-node node_modules/jasmine/bin/jasmine --config=spec/support/e2e.mjs",
"e2e-write": "WRITE=true npm run e2e",
"e2e-watch": "nodemon -V --ext ts,tsx --watch src/ --exec 'npm run e2e'",
"prober": "ts-node node_modules/jasmine/bin/jasmine --config=spec/support/prober.mjs",
"knip": "knip"
},
"files": [
"./dist",
"./bin"
],
"dependencies": {
"@sequelize/core": "^7.0.0-alpha.43",
"@sequelize/postgres": "^7.0.0-alpha.43",
"@socket.io/redis-adapter": "^8.3.0",
"@tanstack/react-query": "^5.74.4",
"@ts-rest/core": "^3.52.1",
"@ts-rest/express": "^3.52.1",
"@ts-rest/react-query": "^3.52.1",
"axios": "^1.8.4",
"bcrypt": "^5.1.1",
"connect-redis": "^7.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^4.21.1",
"express-session": "^1.18.1",
"framer-motion": "^12.7.4",
"immutable": "^5.1.1",
"ioredis": "^5.6.1",
"lodash": "^4.17.21",
"node-mailjet": "^6.0.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-router-dom": "^6.27.0",
"react-stay-scrolled": "^9.0.0",
"react-toastify": "^11.0.5",
"seedrandom": "^3.0.5",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.5",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0",
"umzug": "^3.8.2",
"zod": "^3.24.3"
},
"name": "choochoo",
"version": "1.0.0",
"main": "index.js",
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^5.0.1",
"@types/express-session": "^1.18.0",
"@types/jasmine": "^5.1.5",
"@types/node": "^22.14.1",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@types/seedrandom": "^3.0.8",
"@types/selenium-webdriver": "^4.1.28",
"esbuild": "^0.25.2",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-react": "^7.37.5",
"globals": "^15.14.0",
"jasmine": "^5.5.0",
"knip": "^5.50.5",
"nodemon": "^3.1.9",
"prettier": "3.4.2",
"selenium-webdriver": "^4.33.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1"
},
"author": "YourDeveloperFriend",
"license": "ISC",
"description": "This is a description.",
"publishConfig": {
"registry": "https://npm.pkg.github.com/YourDeveloperFriend"
},
"repository": "https://github.com/YourDeveloperFriend/choochoo",
"foo": "bar"
}