-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.16 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.16 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
{
"name": "fantasy-manager",
"version": "1.22.3",
"private": true,
"scripts": {
"dev": "export NODE_ENV=development APP_ENV=development && npm run start2:part1 && npm run dev:part2",
"dev:part2": "ts-node --project=tsconfig2.json scripts/entrypoint.ts & next dev --turbopack",
"build": "export NODE_ENV=production APP_ENV=production && npm run start2:part1 && next build",
"start": "export NODE_ENV=production APP_ENV=production && npm run start2",
"test": "export NODE_ENV=test APP_ENV=test && ts-node --project=tsconfig2.json scripts/jestSetup.ts && jest --watch",
"test:cli": "export NODE_ENV=test APP_ENV=test && ts-node --project=tsconfig2.json scripts/jestSetup.ts && jest",
"start:test": "export NODE_ENV=test APP_ENV=test && npm run clean && npm run start2",
"start2": "npm run start2:part1 && npm run start2:part2",
"start2:part1": "ts-node --project=tsconfig2.json scripts/startup.ts",
"start2:part2": "ts-node --project=tsconfig2.json scripts/entrypoint.ts & next build && next start",
"lint": "eslint . --max-warnings 0",
"missing-translations": "ts-node --project=tsconfig2.json ./locales/missing_translations.ts",
"pretty": "prettier --check .",
"format": "prettier --write .",
"cypress:open": "cypress open",
"cypress": "wait-on http://127.0.0.1:3000 && cypress run",
"start:no-build": "npm run start2:part1 && ts-node --project=tsconfig2.json scripts/entrypoint.ts & next start",
"clean": "rm -f tsconfig2.tsbuildinfo; rm -f tsconfig3.tsbuildinfo; rm -f test.db; rm -rf ./scripts/data; rm -rf ./players; rm -rf ./.next/cache/images",
"dbtypes": "kysely-codegen --url ./test.db --out-file ./types/db.ts",
"dbtypes:check": "kysely-codegen --url ./test.db --out-file ./types/db.ts --verify --log-level=error"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "^7.1.1",
"@types/better-sqlite3": "^7.6.13",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.0.0",
"chart.js": "^4.5.0",
"csv-stringify": "^6.5.2",
"dotenv": "^17.0.0",
"kysely": "^0.28.0",
"next": "^16.1.6",
"next-auth": "^4.24.11",
"react": "^19.1.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.0",
"sharp": "^0.34.2",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@jest/globals": "^30.0.0",
"@types/bcrypt": "^6.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@types/react": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"babel-plugin-react-compiler": "^1.0.0",
"cypress": "^15.0.0",
"eslint": "^9.29.0",
"eslint-config-next": "^16.1.6",
"jest": "^30.0.0",
"kysely-codegen": "^0.19.0",
"prettier": "^3.5.3",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0",
"wait-on": "^9.0.0"
},
"imports": {
"#/*": "./*.ts",
"#components/*": "./components/*.ts",
"#Modules/*": "./Modules/*.ts",
"#type/*": "./types/*.ts",
"#types/*": "./types/*.ts",
"#scripts/*": "./scripts/*.ts",
"#database": "./Modules/database.ts"
}
}