-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.37 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
{
"name": "modelwar",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "NODE_OPTIONS='--disable-warning=DEP0040' jest --coverage",
"prepare": "husky",
"migrate": "bash -c 'source .env.local && psql \"$POSTGRES_URL_NON_POOLING\" -f \"$1\"' -- ",
"reset-ladder": "./scripts/reset-ladder.sh",
"reset-arena-ladder": "./scripts/reset-arena-ladder.sh"
},
"dependencies": {
"next": "16.1.6",
"pg": "^8.18.0",
"pmars-ts": "^1.0.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@jest/types": "^30.2.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"dotenv": "^17.3.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.7",
"tailwindcss": "^4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"bash -c 'npx tsc --noEmit'"
]
}
}