-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.2 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "devsite-runtime-connector",
"version": "1.0.4",
"type": "module",
"private": true,
"dependencies": {
"@adobe/fetch": "4.1.1",
"@adobe/helix-markdown-support": "7.1.0",
"@adobe/helix-shared-wrap": "2.0.1",
"@adobe/mdast-util-gridtables": "4.0.1",
"@adobe/remark-gridtables": "3.0.1",
"hast-util-raw": "9.0.2",
"hast-util-select": "6.0.2",
"hast-util-to-html": "9.0.0",
"hast-util-to-string": "3.0.0",
"hastscript": "9.0.0",
"mdast-util-to-hast": "13.1.0",
"rehype-format": "5.0.0",
"remark-frontmatter": "5.0.0",
"remark-mdx": "3.0.1",
"remark-parse": "11.0.0",
"unified": "11.0.4",
"unist-util-remove-position": "5.0.0",
"unist-util-visit": "5.0.0"
},
"devDependencies": {
"@adobe/aio-cli": "10.0.0",
"@adobe/eslint-config-helix": "2.0.6",
"@adobe/helix-universal": "4.5.0",
"@adobe/helix-universal-devserver": "1.1.9",
"@babel/core": "7.24.0",
"@babel/eslint-parser": "7.23.10",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "11.1.0",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "11.0.3",
"@semantic-release/release-notes-generator": "12.1.0",
"@types/chai": "4.3.12",
"@types/hast": "3.0.4",
"@types/mdast": "4.0.3",
"@types/mocha": "10.0.6",
"@types/node": "20.11.25",
"@types/unist": "3.0.2",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"c8": "9.1.0",
"chai": "4.4.1",
"chai-as-promised": "7.1.1",
"cross-env": "^7.0.3",
"dotenv": "16.4.5",
"dotenv-cli": "7.4.0",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"mocha": "10.3.0",
"mocha-multi-reporters": "1.5.1",
"nodemon": "3.1.0",
"rollup": "4.12.1",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.4.2"
},
"scripts": {
"lint": "eslint .",
"build": "rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
"bundle": "aio app build",
"dev": "cross-env WEBSERVER_PORT=3002 nodemon -w src -w test -e js,ts,cjs,mjs --exec \"node --loader ts-node/esm --no-warnings test/dev/server.ts\"",
"devRemote": "nodemon -w src -w test -e js,ts,cjs,mjs --exec 'node --loader ts-node/esm --no-warnings test/dev/server.ts'",
"test": "TS_NODE_PROJECT='./tsconfig.json' c8 mocha",
"deploy": "dotenv -- aio app deploy",
"prepare": "husky install"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{js,ts,cjs,mjs}": "eslint"
},
"mocha": {
"extension": [
"js",
"jsx",
"ts",
"tsx"
],
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json",
"spec": [
"test/**/*.test.{js,ts,jsx,tsx}"
],
"require": [
"./test/pretest.cjs"
],
"node-option": [
"loader=ts-node/esm",
"no-warnings"
]
}
}