-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.06 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.06 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
{
"name": "javascript-modules-engine",
"private": true,
"repository": "git@github.com:Jahia/javascript-modules-engine.git",
"license": "MIT",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"build:development": "rollup -c --environment BUILD:development",
"clean": "run clean-server && run clean-client",
"clean-client": "rm -rf src/main/resources/javascript/",
"clean-server": "rm -rf src/main/resources/META-INF/js/"
},
"dependencies": {
"@jahia/javascript-modules-library": "workspace:*",
"devalue": "5.6.3",
"fast-text-encoding": "1.0.6",
"i18next": "25.7.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-i18next": "16.5.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^22.19.3",
"@types/react-dom": "^19.2.3",
"rollup": "^4.53.5",
"rollup-plugin-sbom": "^3.0.0"
}
}