-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.03 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
{
"name": "sim2d",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,css,html}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,css,html}\"",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"arch": "depcruise src --config .dependency-cruiser.cjs",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run arch",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"migrate:up": "node-pg-migrate up -m migrations -j sql",
"migrate:down": "node-pg-migrate down -m migrations -j sql",
"migrate:create": "node-pg-migrate create -m migrations -j sql",
"migrate:dry": "node-pg-migrate up -m migrations -j sql --dry-run"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yml,yaml,css,html}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/brnikita/sim2d.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/brnikita/sim2d/issues"
},
"homepage": "https://sim2d.com",
"description": "Interactive 2D swarm intelligence simulator",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"dependency-cruiser": "^17.3.8",
"eslint": "^10.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"node-pg-migrate": "^8.0.4",
"pg": "^8.20.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.2",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.16",
"@supabase/supabase-js": "^2.98.0"
}
}