-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
75 lines (75 loc) · 1.92 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
{
"name": "photonic-etcher",
"version": "1.3.1",
"description": "Generate exposure masks for Anycubic printers from PCB Gerbers",
"homepage": ".",
"bugs": {
"url": "https://github.com/Andrew-Dickinson/photonic-etcher/issues"
},
"license": "MIT",
"browser": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Andrew-Dickinson/photonic-etcher.git"
},
"author": "Andrew Dickinson <[email protected]>",
"dependencies": {
"@svgdotjs/svg.js": "^3.1.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.8.1",
"canvg": "^4.0.0",
"fast-xml-parser": "^4.0.7",
"file-saver": "^2.0.5",
"gerber-to-svg": "^4.2.8",
"jszip": "^3.7.1",
"minimist": ">=1.2.6",
"nth-check": ">=2.1.1",
"pcb-stackup": "^4.2.8",
"react": "^17.0.2",
"react-bootstrap": "^2.1.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.1",
"title-case": "^3.0.3",
"typescript": "^4.9.5",
"whats-that-gerber": "^4.2.7"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"buffer": "^6.0.3",
"gh-pages": "^4.0.0",
"process": "^0.11.10",
"react-app-rewired": "^2.2.1"
}
}