forked from Jack000/SVGnest
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.25 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": "svgnest.ts",
"version": "1.0.0",
"description": "Typescript version of https://github.com/Jack000/SVGnest migrated to webpack and splitted to packages.",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "lerna run test",
"build": "lerna run build --stream",
"watch": "lerna run watch --parallel",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuriilychak/SVGnest.git"
},
"keywords": [
"polygon pack",
"svg",
"algorithm",
"typescript",
"lerna"
],
"author": "yurii.lychak",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuriilychak/SVGnest/issues"
},
"homepage": "https://github.com/yuriilychak/SVGnest#readme",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-i18next": "^8.1.0",
"@types/svg-path-parser": "^1.1.6",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"babel-loader": "^9.1.3",
"babel-plugin-direct-import": "^1.0.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"lerna": "^8.1.3",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"string-replace-loader": "^3.1.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.2",
"svg-path-parser": "^1.1.0",
"svgson": "^5.3.1"
}
}