-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
51
52
53
54
55
56
{
"name": "@dazl/core3-playground",
"version": "1.0.0",
"description": "Playground to test various stuff...",
"private": true,
"type": "module",
"scripts": {
"build": "node scripts/build.js",
"start": "node scripts/build.js --watch",
"test": "npm run typecheck && npm run lint && npm run build",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"prettify": "prettier --write ."
},
"dependencies": {
"@ampproject/remapping": "^2.3.0",
"@file-services/commonjs": "^11.0.1",
"@file-services/path": "^11.0.1",
"@wixc3/postcss-modules": "^6.1.1",
"idb": "^8.0.3",
"js-base64": "^3.7.8",
"mime": "^4.1.0",
"monaco-editor": "^0.55.1",
"postcss": "^8.5.10",
"postcss-scss": "^4.0.9",
"postcss-value-parser": "^4.2.0",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
"@types/node": "24",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/wicg-file-system-access": "^2023.10.7",
"esbuild": "^0.28.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"open": "^11.0.0",
"prettier": "^3.8.3",
"sass": "^1.99.0",
"type-fest": "^5.6.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.0"
},
"keywords": [],
"author": "Dazl",
"license": "MIT",
"overrides": {
"monaco-editor": {
"dompurify": "^3.4.0"
}
}
}