forked from gchq/Bailo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 766 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "bailo",
"version": "0.4.0",
"scripts": {
"cy:open": "npm --prefix ./frontend/ run cy:open",
"cy:run": "npm --prefix ./frontend/ run cy:run",
"certs": "npm --prefix ./backend/ run certs",
"script": "npm --prefix ./backend/ run script",
"test": "npm --prefix ./backend/ test run && npm --prefix ./frontend/ run test run",
"lint": "npm --prefix ./backend/ run lint && npm --prefix ./frontend/ run lint",
"style": "prettier --write .",
"check-style": "prettier --check .",
"postinstall": "npm --prefix ./backend/ install ./backend/ && npm --prefix ./frontend/ install ./frontend/",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"prettier": "^3.8.1"
}
}