-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.58 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
{
"name": "ekscss-repl",
"version": "0.0.30",
"description": "REPL web app to live compile XCSS into CSS with ekscss",
"repository": "maxmilton/ekscss-repl",
"author": "Max Milton <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "NODE_ENV=production bun build.ts",
"dev": "NODE_ENV=development bun build.ts",
"lint": "bun lint:fmt && bun lint:css && bun lint:js && bun lint:ts",
"lint:css": "stylelint '**/*.{css,xcss}'",
"lint:fmt": "biome check --diagnostic-level=warn",
"lint:js": "eslint",
"lint:ts": "tsc --noEmit",
"serve": "bun http.ts",
"test": "bun test",
"test:e2e": "playwright test",
"test:e2e:debug": "bun test:e2e --debug",
"test:e2e:ui": "bun test:e2e --ui"
},
"dependencies": {
"@ekscss/framework": "0.0.52",
"ekscss": "0.0.20",
"stage1": "0.8.0-next.13"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/js": "9.14.0",
"@maxmilton/eslint-config": "0.0.7",
"@maxmilton/stylelint-config": "0.1.2",
"@maxmilton/test-utils": "0.0.6",
"@playwright/test": "1.48.2",
"@types/bun": "1.1.13",
"@types/csso": "5.0.4",
"@types/eslint-plugin-security": "3.0.0",
"csso": "5.0.5",
"eslint": "9.14.0",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-unicorn": "56.0.0",
"happy-dom": "15.11.0",
"lightningcss": "1.28.1",
"purgecss": "6.0.0",
"stylelint": "16.10.0",
"stylelint-config-standard": "36.0.1",
"terser": "5.36.0",
"trackx": "0.6.1",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0"
}
}