-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 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
{
"name": "@saltcorn/react",
"version": "0.1.9",
"description": "integrate React components in your Saltcorn application",
"main": "index.js",
"scripts": {
"build_view": "webpack --mode production --config user-code/webpack.config.js",
"build_view_dev": "webpack --mode development --config user-code/webpack.config.js",
"build_main": "webpack --mode production --config main-code/webpack.config.js",
"build_main_dev": "webpack --mode development --config main-code/webpack.config.js",
"eslint": "eslint ./app-code",
"test": "jest tests --runInBand"
},
"dependencies": {
"@saltcorn/markup": "^0.2.0",
"@saltcorn/data": "^0.2.0",
"@saltcorn/react-lib": "0.0.1-beta.8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"webpack": "5.97.1",
"webpack-cli": "6.0.1",
"babel-loader": "^10.0.0",
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"eslint": "9.22.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^16.0.0",
"@module-federation/runtime": "0.11.3",
"style-loader": "4.0.0",
"css-loader": "7.1.2"
},
"devDependencies": {
"jest": "^29.7.0"
},
"author": "Christian Hugo",
"license": "MIT",
"repository": "github:saltcorn/react",
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2020
},
"env": {
"node": true,
"es6": true
},
"rules": {
"no-unused-vars": "off",
"no-case-declarations": "off",
"no-empty": "warn",
"no-fallthrough": "warn"
}
}
}