-
Notifications
You must be signed in to change notification settings - Fork 713
/
package.json
29 lines (29 loc) · 959 Bytes
/
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
{
"private": true,
"name": "hrms",
"description": "Open Source HR & Payroll System powered by the Frappe Framework",
"repository": {
"type": "git",
"url": "git+https://github.com/frappe/hrms.git"
},
"homepage": "https://frappe.io/hr",
"author": "Frappe Technologies Pvt. Ltd.",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/frappe/hrms/issues"
},
"workspaces": ["frontend", "roster", "frappe-ui"],
"scripts": {
"postinstall": "yarn install-pwa-deps && yarn install-roster-deps",
"install-pwa-deps": "cd frontend && yarn install --check-files",
"install-roster-deps": "cd roster && yarn install --check-files",
"dev-pwa": "cd frontend && yarn dev",
"dev-roster": "cd roster && yarn dev",
"build": "yarn build-pwa && yarn build-roster",
"build-pwa": "cd frontend && yarn build",
"build-roster": "cd roster && yarn build"
},
"dependencies": {
"html2canvas": "^1.4.1"
}
}