-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 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
69
70
71
72
73
{
"name": "svg-to-stencil",
"version": "1.1.0",
"description": "Convert SVG paths to MXGraph syntax used in DrawIO stencils",
"main": "src/main.ts",
"author": "Leon Cilliers <[email protected]>",
"license": "MIT",
"scripts": {
"lint-es": "eslint src/**/*.ts",
"lint-scss": "stylelint 'src/scss/**/*.scss' --config stylelint.config.js --fix",
"start": "webpack serve --mode development",
"build": "webpack --mode production",
"prebuild": "pnpm run lint-scss; pnpm run lint-scss"
},
"keywords": [],
"dependencies": {
"modern-normalize": "^2.0.0",
"rxjs": "^7.8.1",
"svgson": "^5.3.1"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.23.7",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"babel-loader": "^9.1.3",
"browserslist": "^4.22.2",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.35.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.56.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-webpack-plugin": "^4.0.1",
"extract-css-chunks-webpack-plugin": "^4.10.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.33",
"postcss-import": "^16.0.0",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^9.3.0",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"style-loader": "^3.3.3",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-webpack-plugin": "^4.1.1",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"engines": {
"node": ">=18",
"npm": "Please use PNPM instead of NPM to install dependencies",
"pnmp": ">=8"
},
"engineStrict": true,
"private": true
}