forked from Hufe921/canvas-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 676 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 676 Bytes
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
{
"version": "0.8.5",
"scripts": {
"dev": "vite",
"lib": "npm run lint && tsc && vite build --mode lib",
"build": "npm run lint && tsc && vite build --mode app",
"serve": "vite preview",
"lint": "eslint .",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"devDependencies": {
"@types/node": "^16.11.12",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"cypress": "^9.5.1",
"cypress-file-upload": "^5.0.8",
"eslint": "7.32.0",
"typescript": "^4.3.2",
"vite": "^2.4.2"
},
"dependencies": {
"prismjs": "^1.27.0"
}
}