-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
74 lines (74 loc) · 1.89 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
{
"name": "connect-four",
"version": "1.0.0",
"description": "A Connect Four web app implemented in JS using Mithril",
"private": true,
"type": "module",
"engines": {
"node": "^20.0.0"
},
"scripts": {
"start": "node server/index.js",
"dev": "node server/index.js",
"build": "vite build",
"preview": "NODE_ENV=production DISABLE_SSL=1 node server/index.js",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test": "playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caleb531/connect-four.git"
},
"keywords": [
"connect-four",
"mithril"
],
"author": "Caleb Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/caleb531/connect-four/issues"
},
"homepage": "https://github.com/caleb531/connect-four#readme",
"dependencies": {
"@fontsource/ubuntu": "^5.1.0",
"clsx": "^2.1.1",
"compression": "^1.7.5",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-enforces-ssl": "^1.1.0",
"helmet": "^8.0.0",
"mithril": "^2.2.11",
"moment": "^2.30.1",
"open": "^10.1.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tiny-emitter": "^2.1.0",
"underscore": "^1.13.7",
"uuid": "^11.0.3",
"vite": "^6.0.11",
"vite-plugin-pwa": "^0.21.1",
"workbox-window": "^7.3.0"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/mithril": "^2.2.7",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"prettier": "^3.4.1",
"sass-embedded": "^1.81.0",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"sinon-matchers": "^2.1.0",
"workbox-build": "^7.3.0"
},
"pnpm": {
"overrides": {
"cookie@<0.7.0": ">=0.7.0"
}
}
}