-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (86 loc) · 4.09 KB
/
package.json
File metadata and controls
87 lines (86 loc) · 4.09 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
{
"name": "nexter",
"private": true,
"version": "1.3.0",
"description": "Next generation unified shell for Edge Delivery applications.",
"type": "module",
"scripts": {
"nx": "NX1_BELOW_HERE",
"lint:js": "eslint .",
"lint:css": "stylelint \"nx/**/*.css\"",
"lint:css:fix": "stylelint --fix \"nx/**/*.css\"",
"lint": "npm run lint:js && npm run lint:css",
"local": "aem up --port=6456",
"test": "wtr --config ./web-test-runner.config.mjs \"./test/**/*.test.(js|html)\" --node-resolve --port=2000 --coverage --concurrent-browsers 4",
"test:debug": "wtr --config ./web-test-runner.config.mjs \"./test/**/*.test.(js|html)\" --node-resolve --port=2000 --debug --watch",
"test:watch": "npm test -- --watch",
"test:file": "wtr --config ./web-test-runner.config.mjs --node-resolve --port=2000 --coverage",
"test:file:watch": "wtr --config ./web-test-runner.config.mjs --node-resolve --port=2000 --coverage --watch",
"build:mdast": "esbuild --format=esm --minify ./nx/deps/mdast/src/index.js --bundle --outfile=./nx/deps/mdast/dist/index.js",
"build:codemirror": "esbuild --format=esm --minify ./nx/deps/codemirror/src/index.js --bundle --outfile=./nx/deps/codemirror/dist/index.js",
"build:da-lit": "esbuild --format=esm --minify ./deps/lit/src/index.js --bundle --outfile=./deps/lit/dist/index.js",
"build:da-form": "esbuild --format=esm --minify ./nx/deps/da-form/src/index.js --bundle --outfile=./nx/deps/da-form/dist/index.js",
"build:ml-lit": "esbuild --format=esm --minify ./nx/deps/ml-lit/src/index.js --bundle --outfile=./nx/deps/ml-lit/dist/index.js",
"build:virtualizer": "esbuild --format=esm --minify ./nx/deps/virtualizer/src/index.js --bundle --outfile=./nx/deps/virtualizer/dist/index.js",
"prepare": "husky",
"nx2": "NX2_BELOW_HERE",
"nx2:lint:css": "stylelint \"nx2/**/*.css\"",
"nx2:lint:css:fix": "npm run nx2:lint:css -- --fix",
"nx2:lint": "npm run lint:js && npm run nx2:lint:css",
"nx2:test": "wtr --config ./nx2/test/wtr.config.mjs \"./nx2/test/**/*.test.(js|html)\" --node-resolve --port=2000 --coverage --concurrent-browsers 4",
"nx2:test:debug": "wtr --config ./nx2/test/wtr.config.mjs \"./nx2/test/**/*.test.(js|html)\" --node-resolve --port=2000 --debug --watch",
"nx2:test:watch": "npm test -- --watch",
"nx2:test:file": "wtr --config ./nx2/test/wtr.config.mjs --node-resolve --port=2000 --coverage",
"nx2:test:file:watch": "wtr --config ./nx2/test/wtr.config.mjs --node-resolve --port=2000 --coverage --watch",
"nx2:build:da-lit": "esbuild --format=esm --minify ./nx2/deps/lit/src/index.js --bundle --outfile=./nx2/deps/lit/dist/index.js",
"nx2:build:spectrum": "node nx2/deps/spectrum/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/da-nx.git"
},
"author": "Adobe",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/adobe/da-nx/issues"
},
"homepage": "https://github.com/adobe/da-nx#readme",
"devDependencies": {
"@adobe/eslint-config-helix": "^3.0.17",
"@adobe/spectrum-tokens": "^14.2.2",
"@esm-bundle/chai": "4.3.4-fix.0",
"@web/dev-server-import-maps": "^0.2.0",
"@web/test-runner": "^0.18.0",
"@web/test-runner-commands": "0.9.0",
"chai": "4.4.1",
"eslint": "9.39.2",
"globals": "^17.3.0",
"husky": "9.1.7",
"lint-staged": "^16.2.7",
"sinon": "13.0.2",
"stylelint": "17.1.1",
"stylelint-config-standard": "40.0.0"
},
"dependencies": {
"@adobe/mdast-util-gridtables": "^4.0.6",
"@adobe/remark-gridtables": "^3.0.6",
"@cfworker/json-schema": "^4.1.1",
"@codemirror/lang-json": "^6.0.2",
"@fsegurai/codemirror-theme-github-light": "^6.2.2",
"@lit-labs/virtualizer": "^2.0.16",
"codemirror": "^6.0.2",
"esbuild": ">=0.25.0",
"hast-util-from-html-isomorphic": "^2.0.0",
"hast-util-raw": "^9.0.4",
"hast-util-select": "^6.0.4",
"hast-util-to-html": "^9.0.3",
"lit": "^3.2.0",
"mdast-util-to-hast": "^13.2.0",
"remark-parse": "^11.0.0",
"unified": "^11.0.5"
},
"lint-staged": {
"*.js": "eslint",
"*.css": "stylelint"
}
}