-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.79 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
{
"name": "@genbs/urpflanze-gui",
"version": "0.0.1",
"description": "GUI for Urpflanze library",
"main": "dist/app.js",
"scripts": {
"start": "webpack serve --config webpack.config.js --mode=development",
"build": "webpack --config webpack.config.js --mode=production",
"build-dev": "webpack --config webpack.config.js --mode=development",
"predeploy": "npm run build",
"analyse-dev": "node analyse.js development",
"analyse": "node analyse.js",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@doodle3d/clipper-js": "^1.0.11",
"@pups/js": "0.0.0-b45",
"ace-builds": "^1.4.12",
"lz-string": "^1.4.4",
"react": "^17.0.1",
"react-ace": "^9.3.0",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"rete": "^1.4.5-rc.1",
"rete-area-plugin": "^0.2.1",
"rete-code-plugin": "^0.2.0",
"rete-connection-plugin": "^0.9.0",
"rete-context-menu-plugin": "^0.6.0-rc.1",
"rete-react-render-plugin": "^0.2.1",
"styled-components": "^5.2.1",
"urpflanze": "^0.3.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/preset-react": "^7.12.13",
"@types/lz-string": "^1.3.34",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-loader": "^8.2.2",
"eslint": "^7.20.0",
"eslint-plugin-react": "^7.22.0",
"raw-loader": "^4.0.2",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.0.17",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.2.2",
"webpack": "^5.24.1",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}