-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 997 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 997 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
27
28
29
30
{
"name": "HtmlToPdfTester",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "npm run check-code && vite build",
"build:dev": "npm run check-code && vite build --mode development",
"check-code": "npm run lint && npm run ts:compile",
"dev": "concurrently -n Vite,TS -c grey,green \"vite\" \"npm run ts:watch\"",
"format": "prettier --write .",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "vite preview",
"ts:compile": "tsc",
"ts:watch": "npm run ts:compile -- --watch --preserveWatchOutput --pretty"
},
"prettier": "@combeenation/prettier-config",
"dependencies": {
"@combeenation/custom-code-utils": "^1.1.5"
},
"devDependencies": {
"@combeenation/eslint-config": "1.0.1",
"@combeenation/prettier-config": "1.0.0",
"@combeenation/ts-config": "1.0.0",
"@combeenation/vite-plugin-custom-code-sync": "^0.0.1",
"concurrently": "^8.2.2",
"typescript": "5.1.6",
"vite": "4.5.3"
}
}