-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.23 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.23 KB
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
{
"name": "shared-salesforce",
"private": true,
"version": "1.0.0",
"description": "A repository for me to share some things I built for Salesforce using Apex and Lightning Web Components (LWCs)",
"scripts": {
"create-scratch-org": "sf org create scratch -f config/project-scratch-def.json -a devOrg -d -w 30",
"lint": "npm run lint:lwc",
"lint:lwc": "eslint force-app/main/default/lwc",
"test": "npm run test:lwc",
"test:apex": "sf apex run test --test-level RunLocalTests -w 10",
"test:lwc": "sfdx-lwc-jest",
"test:lwc:watch": "sfdx-lwc-jest --watch",
"test:lwc:debug": "sfdx-lwc-jest --debug",
"test:lwc:coverage": "sfdx-lwc-jest --coverage",
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\""
},
"devDependencies": {
"@prettier/plugin-xml": "^0.7.2",
"@salesforce/eslint-config-lwc": "^0.5.0",
"@salesforce/sfdx-lwc-jest": "^0.7.1",
"eslint": "^6.8.0",
"prettier": "^2.0.5",
"prettier-plugin-apex": "^1.4.0"
}
}