-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.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
{
"name": "SVG-PCB",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@web/dev-server": "^0.1.32",
"autoprefixer": "^10.4.16",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"typescript": "^5.4.4",
"vite": "^4.0.1",
"vite-plugin-checker": "^0.6.4",
"yarn": "^1.22.19"
},
"dependencies": {
"@codemirror/commands": "^6.0.0",
"@codemirror/lang-javascript": "^6.0.0",
"@codemirror/search": "^6.0.0",
"@codemirror/state": "^6.0.1",
"@replit/codemirror-vim": "^6.0.4",
"acorn": "^8.7.1",
"astring": "^1.7.5",
"codemirror": "^6.0.0",
"esprima": "^4.0.1",
"file-saver": "^2.0.5",
"flatten-svg": "^0.3.0",
"hersheytext": "^2.0.0",
"js-beautify": "^1.14.11",
"jszip": "^3.10.1",
"lit-html": "^2.0.1",
"prettier": "^3.0.3",
"text-to-svg": "^3.1.5"
},
"jest": {
"testEnvironment": "node",
"roots": [
"<rootDir>/__tests__"
],
"testMatch": [
"**/*.test.js"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}