-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.34 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
65
66
67
68
{
"name": "dash_mdxeditor",
"version": "0.0.1",
"description": "Dash wrapper for the MdxEditor React library",
"repository": {
"type": "git",
"url": "git://github.com/Spend-Matters-LLC/dash-mdxeditor.git"
},
"bugs": {
"url": "https://github.com/Spend-Matters-LLC/dash-mdxeditor/issues"
},
"homepage": "https://github.com/Spend-Matters-LLC/dash-mdxeditor",
"main": "build/index.js",
"scripts": {
"start": "webpack serve --config ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"prepublishOnly": "npm run validate-init",
"build:js": "webpack --mode production",
"build:backends": "dash-generate-components ./src/lib/components dash_mdxeditor -p package-info.json --r-prefix 'dme' --jl-prefix 'dme' --ignore \\.test\\.",
"build:backends-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:backends)",
"build": "npm run build:js && npm run build:backends",
"build:activated": "npm run build:js && npm run build:backends-activated"
},
"author": "Jose Gómez Gadea <jgomez@spendmatters.com>",
"license": "MIT",
"dependencies": {
"@mdxeditor/editor": "3.6.1",
"ramda": "0.30.1"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "7.24.7",
"@babel/preset-react": "7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@plotly/dash-component-plugins": "1.2.3",
"@plotly/webpack-dash-dynamic-import": "1.3.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"babel-eslint": "10.1.0",
"babel-loader": "9.1.3",
"copyfiles": "2.4.1",
"css-loader": "7.1.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.3",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-docgen": "5.4.3",
"react-dom": "18.3.1",
"style-loader": "4.0.0",
"styled-jsx": "5.1.6",
"terser-webpack-plugin": "4.2.3",
"ts-loader": "9.5.1",
"typescript": "5.4.5",
"webpack": "5.92.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^5.0.4"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=6.1.0"
}
}