-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
62 lines (62 loc) · 2.18 KB
/
package.json
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
{
"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": {
"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.20"
},
"devDependencies": {
"@babel/core": "7.24.5",
"@babel/eslint-parser": "7.24.5",
"@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": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-ecmalist": "^1.0.8",
"eslint-plugin-import": "2.29.1",
"sinon": "13.0.2",
"stylelint": "14.6.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard": "25.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",
"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"
}
}