-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "ekscss-repl",
"version": "0.0.32",
"description": "REPL web app to live compile XCSS into CSS with ekscss",
"repository": "github:maxmilton/ekscss-repl",
"author": "Max Milton <max@2okki.com>",
"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": "dprint check",
"lint:js": "eslint",
"lint:ts": "tsc --noEmit",
"serve": "wrangler dev --port 3000",
"test": "bun test",
"test:e2e": "playwright test"
},
"imports": {
"#*": "./src/*"
},
"dependencies": {
"@ekscss/framework": "0.0.60",
"ekscss": "0.0.23",
"stage1": "0.10.0"
},
"devDependencies": {
"@eslint/js": "9.38.0",
"@maxmilton/eslint-config": "0.3.0",
"@maxmilton/stylelint-config": "0.4.2",
"@maxmilton/test-utils": "0.0.13",
"@playwright/test": "1.56.1",
"@swc/core": "1.14.0",
"@types/bun": "1.3.1",
"bugbox": "0.0.4",
"dprint": "0.50.2",
"eslint": "9.38.0",
"eslint-plugin-unicorn": "62.0.0",
"happy-dom": "20.0.10",
"lightningcss": "1.30.2",
"purgecss": "7.0.2",
"stylelint": "16.25.0",
"stylelint-config-standard": "39.0.1",
"typescript": "5.9.3",
"typescript-eslint": "8.46.2",
"wrangler": "4.45.2"
}
}