forked from AOSSIE-Org/PictoPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 692 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "pictopy",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"linux-dev": "bash ./scripts/linux-dev.sh",
"win-dev": "cd scripts && win-dev.bat",
"prepare": "husky",
"lint:check": "cd frontend && eslint --max-warnings 0 --config .eslintrc.json .",
"lint:fix": "cd frontend && eslint --max-warnings 0 --config .eslintrc.json . --fix",
"format:fix": "cd frontend && prettier --write \"**/*.{ts,tsx,json}\"",
"format:check": "cd frontend && prettier --check \"**/*.{ts,tsx,json}\"",
"cargo:check": "cd backend && cargo check",
"setup": "cd scripts && node setup.js"
},
"devDependencies": {
"husky": "^9.1.7"
}
}