-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
52 lines (52 loc) · 1.89 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "sfdx-quiz",
"version": "2.11.0",
"private": true,
"description": "Lightning Web Component Quiz App on a Salesforce Org",
"scripts": {
"lint": "eslint src/main/default/lwc",
"test": "npm run lint && npm run test:unit",
"test:unit": "sfdx-lwc-jest --skipApiVersionCheck",
"test:unit:watch": "sfdx-lwc-jest --watch --skipApiVersionCheck",
"test:unit:debug": "sfdx-lwc-jest --debug --skipApiVersionCheck",
"test:unit:coverage": "sfdx-lwc-jest --coverage --skipApiVersionCheck",
"prettier": "prettier --write '**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}'",
"prettier:verify": "prettier --list-different '**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}'",
"postinstall": "husky install",
"precommit": "lint-staged"
},
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^1.8.0",
"@salesforce/eslint-config-lwc": "^3.5.3",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@salesforce/sfdx-lwc-jest": "^5.0.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-apex": "^2.1.2"
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}": [
"prettier --write"
],
"**/lwc/**/*.js": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/developerforce/quiz-sfdx.git"
},
"author": "salesforce.com",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/developerforce/quiz-sfdx/issues"
},
"homepage": "https://github.com/developerforce/quiz-sfdx#readme",
"volta": {
"node": "20.12.2"
}
}