-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.28 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
74
75
76
{
"name": "monte-carlo-knows-it-better",
"description": "Game of Life implementation based on Monte Carlo",
"author": "Sascha Lucius",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"build:gh-page": "TARGET=gh-page vite build",
"preview": "vite preview",
"preview:gh-page": "npx http-server ./build",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"coverage": "vitest run --coverage",
"prepare": "husky install",
"pre-commit": "npx lint-staged",
"start": "npm run build; npx ts-node --esm ./src/server/index.ts"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.8",
"@fontsource/fira-mono": "5.0.8",
"@playwright/test": "1.37.0",
"@sveltejs/adapter-auto": "2.1.0",
"@sveltejs/adapter-node": "1.3.1",
"@sveltejs/adapter-static": "2.0.3",
"@sveltejs/kit": "1.22.5",
"@testing-library/dom": "9.3.1",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/svelte": "4.0.3",
"@testing-library/user-event": "14.4.3",
"@types/cookie": "0.5.1",
"@types/express": "4.17.17",
"@types/node": "^20.5.3",
"@types/seedrandom": "^3.0.5",
"@types/testing-library__jest-dom": "5.14.9",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"@vitest/coverage-c8": "0.26.3",
"eslint": "8.47.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-svelte": "2.32.4",
"husky": "8.0.3",
"jsdom": "22.1.0",
"lint-staged": "13.2.3",
"prettier": "3.0.1",
"prettier-plugin-svelte": "3.0.3",
"svelte": "4.2.0",
"svelte-check": "3.5.0",
"ts-node": "^10.9.1",
"tslib": "2.6.1",
"typescript": "5.1.6",
"vite": "4.4.9",
"vitest": "0.34.1"
},
"type": "module",
"lint-staged": {
"*.{js,ts,svelte,css,md,json}": [
"prettier --plugin-search-dir . --write .",
"prettier --check --plugin-search-dir=."
],
"*.{js,ts,svelte}": "eslint . --fix"
},
"dependencies": {
"express": "4.18.2",
"seedrandom": "^3.0.5",
"socket.io": "4.7.2",
"socket.io-client": "4.7.2"
},
"engines": {
"node": ">=16.0.0"
}
}