-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.27 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.27 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
{
"name": "@adobecom/dark-alley",
"type": "module",
"author": "Adobe",
"license": "Apache License 2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/da-live.git"
},
"dependencies": {
"@da-tools/da-parser": "1.1.2",
"@open-wc/lit-helpers": "0.7.0",
"esbuild": "0.21.0",
"jspreadsheet-ce": "4.13.4",
"jsuites": "5.0.29",
"lit": "3.2.0",
"prosemirror-commands": "1.6.1",
"prosemirror-example-setup": "1.2.3",
"prosemirror-gapcursor": "1.3.2",
"prosemirror-history": "1.4.1",
"prosemirror-keymap": "1.2.2",
"prosemirror-menu": "1.2.4",
"prosemirror-model": "1.23.0",
"prosemirror-schema-basic": "1.2.3",
"prosemirror-schema-list": "1.4.1",
"prosemirror-state": "1.4.2",
"prosemirror-tables": "1.5.1",
"prosemirror-view": "1.34.3",
"y-prosemirror": "1.2.12",
"y-websocket": "2.0.4",
"yjs": "13.6.29"
},
"devDependencies": {
"@babel/core": "7.28.6",
"@babel/eslint-parser": "7.28.6",
"@esm-bundle/chai": "4.3.4-fix.0",
"@web/dev-server-import-maps": "0.2.1",
"@web/test-runner": "0.20.2",
"@web/test-runner-commands": "0.9.0",
"chai": "6.2.2",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-chai-friendly": "1.1.0",
"eslint-plugin-compat": "6.0.2",
"eslint-plugin-ecmalist": "1.0.8",
"eslint-plugin-import": "2.32.0",
"sinon": "21.0.1",
"stylelint": "17.0.0",
"stylelint-config-standard": "40.0.0"
},
"scripts": {
"lint:js": "eslint .",
"lint:css": "stylelint blocks/**/*.css styles/*.css",
"lint": "npm run lint:js && npm run lint:css",
"copy:deps": "node ./deps/copy.js",
"postinstall": "npm run build:da-y-wrapper && npm run build:da-lit && npm run build:da-parser",
"test": "wtr \"./test/unit/**/*.test.js\" --node-resolve --port=2000 --coverage",
"test:watch": "npm test -- --watch",
"test:e2e": "cd test/e2e && npm i && npm run test:all",
"build:da-lit": "esbuild --format=esm --minify ./deps/lit/src/index.js --bundle --outfile=./deps/lit/dist/index.js",
"build:da-y-wrapper": "esbuild --format=esm --minify ./deps/da-y-wrapper/src/index.js --bundle --outfile=./deps/da-y-wrapper/dist/index.js",
"build:da-parser": "./tools/build-da-parser.sh"
}
}