-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 988 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 988 Bytes
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": "charkeeper",
"version": "0.5.1.0",
"private": "false",
"type": "module",
"browser": true,
"scripts": {
"watch": "node esbuild.watch.config.js",
"build": "node esbuild.config.js",
"lint": "eslint app/javascript",
"test": "node --test \"spec/javascript/*.test.js\"",
"eval:e2e": "playwright test"
},
"dependencies": {
"@babel/core": "^7.20.12",
"@solid-primitives/i18n": "^2.1.1",
"@solid-primitives/keyed": "^1.5.1",
"@solid-primitives/resize-observer": "^2.1.1",
"@supabase/supabase-js": "2",
"babel-preset-solid": "^1.6.9",
"solid-js": "^1.8.21"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"esbuild": "^0.24.0",
"eslint": "^9.9.0",
"eslint-plugin-solid": "^0.14.2",
"globals": "^17.7.0",
"jsdom": "^30.0.1"
},
"eslintConfig": {
"globals": {
"window": true,
"document": true
}
},
"engines": {
"node": "^22.22.2 || ^24.15.0 || >=26.0.0"
}
}