forked from frappe/crm
-
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) · 913 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 913 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
{
"private": true,
"type": "module",
"name": "crm",
"description": "Frappe CRM helps you work, not slow you down. Open-source, intuitive, and free from extra costs.",
"repository": {
"type": "git",
"url": "git+https://github.com/frappe/crm.git"
},
"homepage": "https://frappe.io/crm",
"author": "Frappe Technologies Pvt. Ltd.",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/frappe/crm/issues"
},
"scripts": {
"postinstall": "cd frontend && yarn install --check-files",
"dev": "cd frontend && yarn dev",
"build": "cd frontend && yarn build",
"upgrade-frappeui": "cd frontend && yarn add frappe-ui@latest && cd ..",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/node": "^22.0.0"
}
}