-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 917 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 917 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
{
"name": "da-ue",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"deploy": "wrangler deploy",
"deploy:stage": "wrangler deploy --env stage",
"dev": "wrangler dev --local-protocol https --env dev",
"start": "wrangler dev --local-protocol https --env dev",
"test": "c8 mocha --spec=test/**/*.test.js",
"lint": "eslint ."
},
"devDependencies": {
"@adobe/eslint-config-helix": "3.0.6",
"c8": "^11.0.0",
"eslint": "9.39.4",
"esmock": "^2.7.0",
"mocha": "^11.1.0",
"wrangler": "^4.46.0"
},
"dependencies": {
"hast-util-format": "^1.1.0",
"hast-util-from-html": "^2.0.3",
"hast-util-is-element": "^3.0.0",
"hast-util-minify-whitespace": "^1.0.1",
"hast-util-select": "^6.0.3",
"hast-util-to-html": "^9.0.4",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.1",
"unist-util-visit": "^5.0.0"
}
}