-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.82 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
{
"name": "canvas-gcode",
"version": "1.0.0",
"main": "index.js",
"author": "Jacob Clarke",
"license": "MIT",
"scripts": {
"start": "npm run serve & npm run watch:css",
"serve": "webpack serve --mode=development",
"watch": "npm run watch:js & npm run watch:css",
"watch:js": "webpack --mode development --watch",
"watch:css": "postcss src/styles/index.css -o public/bundle.css --watch",
"build": "webpack --config=webpack.prod.config.js"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@bigfishtv/prettier-config": "^1.0.5",
"@types/lodash": "^4.14.182",
"@types/lodash-es": "^4.17.9",
"@types/matter-js": "^0.19.7",
"@types/opentype.js": "^1.3.8",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"babel-loader": "^8.2.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"core-js": "3",
"cssnano": "^5.1.7",
"eslint": "^8.47.0",
"eslint-config-prettier": "latest",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-simple-import-sort": "latest",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.0",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"postcss-preset-env": "^7.4.3",
"prettier": "~2.8.8",
"terser-webpack-plugin": "^5.3.1",
"typescript": "^5.2.2",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {
"fft.js": "^4.0.4",
"js-angusj-clipper": "^1.3.1",
"lodash-es": "^4.17.21",
"matter-js": "^0.20.0",
"opentype.js": "^1.3.4"
}
}