forked from t3n/neos-debug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "flowpack-neos-debug",
"version": "1.0.0",
"main": "Resources/Private/Scripts/index.tsx",
"license": "MIT",
"private": true,
"sideEffects": false,
"engines": {
"node": ">=20"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"@preact/signals": "^1.2",
"preact": "^10.19.2",
"preact-custom-element": "^4.3.0"
},
"scripts": {
"build": "node esbuild.js",
"start": "node esbuild.js --watch"
},
"devDependencies": {
"@types/preact-custom-element": "^4.0.4",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"esbuild": "^0.19.8",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-preact": "^0.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"browserslist": [
"> 1%",
"Last 2 versions",
"not dead"
],
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 4
},
"packageManager": "[email protected]"
}