-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.47 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
{
"name": "colour-me-knowledgeable",
"version": "0.0.1",
"description": "Colour Me knowledgeable! A colour-based quiz",
"repository": "[email protected]:dxw/js-cop-games.git",
"license": "MIT",
"scripts": {
"compile": "bun build ./client/index.ts --outdir ./client/assets/scripts",
"compile:watch": "bun build ./client/index.ts --outdir ./client/assets/scripts --watch",
"lint:biome": "bunx @biomejs/biome check .",
"lint:biome:fix": "bunx @biomejs/biome check --write .",
"lint:stylelint": "bunx stylelint \"client/assets/styles/*.css\"",
"lint:stylelint:fix": "bunx stylelint \"client/assets/styles/*.css\" --fix",
"start": "bun run compile && bun server/index.ts",
"start:watch": "bun run compile:watch & bun --watch server/index.ts",
"typecheck": "bun run tsc",
"test:unit": "bun test server",
"test:integration:cli": "bunx playwright test",
"test:integration:ui": "bunx playwright test --ui",
"test:integration:trace": "bunx playwright test --project=chromium --trace=on"
},
"dependencies": {
"serve-handler": "^6.1.3",
"socket.io": "^4.1.3",
"stylelint-selector-bem-pattern": "^4.0.0",
"xstate": "5.19.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "^1.39.0",
"@types/serve-handler": "^6.1.1",
"@types/web": "^0.0.187",
"bun-types": "^1.0.2",
"socket.io-client": "^4.7.2",
"stylelint": "^16.0.0",
"stylelint-config-clean-order": "^6.0.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.2.2"
}
}