-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
84 lines (84 loc) · 2.46 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@svg-edit/svgedit-react",
"version": "0.1.0",
"description": "Sample React Editor based on SVGEdit",
"main": "dist/editor.js",
"scripts": {
"start": "python -m http.server",
"build": "npx webpack --mode production",
"build-dev": "npx webpack --mode development --watch",
"build-doc": "./node_modules/.bin/esdoc .esdoc.json",
"lint": "eslint src --ext .jsx --ext .js"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"dist/index.html",
"dist/editor.js",
"dist/editor.map.js",
"dist/editor.css",
"dist/arbelos.svg"
],
"author": "OptimistikSAS",
"license": "MIT",
"dependencies": {
"@svgedit/svgcanvas": "^7.2.2",
"color-string": "^1.9.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-color": "^2.19.3",
"react-dom": "^18.3.1",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/code-frame": "^7.18.6",
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.18.9",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"babel-plugin-import": "^1.13.5",
"css-loader": "^6.7.1",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-exclude-source-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-loader": "^4.1.0",
"imports-loader": "^4.0.1",
"jest": "^28.1.3",
"jest-enzyme": "^7.1.2",
"jquery": "^3.6.0",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"mini-css-extract-plugin": "^2.6.1",
"node-fetch": "^3.2.10",
"node-sass": "^7.0.1",
"postcss-loader": "^7.0.1",
"raw-loader": "^4.0.2",
"react-intl": "^6.0.5",
"regenerator-runtime": "^0.13.9",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"stylelint": "^14.10.0",
"svg-inline-loader": "^0.8.2",
"svg-url-loader": "^7.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}