-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 1.85 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
63
64
{
"name": "@silexlabs/grapesjs-data-source",
"version": "0.0.127",
"description": "Grapesjs Data Source",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/silexlabs/grapesjs-data-source.git"
},
"scripts": {
"start": "$npm_execpath run serve & grapesjs-cli serve",
"build": "grapesjs-cli build --patch=false",
"serve": "$npm_execpath run serve:mocks & $npm_execpath run serve:grapesjs",
"serve:mocks": "http-serve ./__mocks__/ -p 3000 --cors",
"serve:grapesjs": "http-serve `node_modules grapesjs`/grapesjs/dist -p 3001 --cors",
"lint": "eslint src/**/*",
"test": "node --experimental-vm-modules `node_modules jest`/.bin/jest --runInBand --no-cache",
"test:watch": "npm test -- --watch",
"prepare": "husky"
},
"keywords": [
"grapesjs",
"plugin",
"silex"
],
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"globals": "^15.13.0",
"grapesjs-cli": "^4.1.3",
"http-serve": "^1.0.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jquery": "^3.7.1",
"node_modules-path": "^2.0.8",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"peerDependencies": {
"grapesjs": "^0.21.10"
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"@apollo/client": "^3.12.3",
"@silexlabs/expression-input": "^0.0.25",
"backbone": "^1.6.0",
"dedent-js": "^1.0.1",
"lit": "^3.2.1"
}
}