-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.82 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "fantasy-manager",
"version": "1.21.0",
"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",
"build": "export NODE_ENV=production APP_ENV=production && npm ci && 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"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@mui/material": "6.2.1",
"bcrypt": "5.1.1",
"chart.js": "4.4.7",
"csv-stringify": "6.5.2",
"dotenv": "16.4.7",
"next": "15.1.2",
"next-auth": "4.24.11",
"next-pwa": "5.6.0",
"react": "18.3.1",
"react-chartjs-2": "5.2.0",
"react-dom": "18.3.1",
"sharp": "0.33.5",
"sqlite": "5.1.1",
"sqlite3": "5.1.7",
"ts-node": "10.9.2"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/bcrypt": "5.0.2",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"@types/react": "18.3.17",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"cypress": "13.17.0",
"eslint": "9.17.0",
"eslint-config-next": "15.1.2",
"jest": "29.7.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"typescript": "5.7.2",
"wait-on": "8.0.1"
},
"imports": {
"#/*": "./*.ts",
"#components/*": "./components/*.ts",
"#Modules/*": "./Modules/*.ts",
"#type/*": "./types/*.ts",
"#types/*": "./types/*.ts",
"#scripts/*": "./scripts/*.ts",
"#database": "./Modules/database.ts"
}
}