-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.06 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
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "lightning-folder",
"version": "1.0.0",
"description": "Salesforce App",
"author": "hanabiiii",
"license": "MIT",
"bugs": {
"url": "https://github.com/hanabiiii/lightning-folder/issues"
},
"homepage": "https://github.com/hanabiiii/lightning-folder#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hanabiiii/lightning-folder.git"
},
"keywords": [
"salesforce",
"lightning web component",
"sfdx"
],
"scripts": {
"lint": "npm run lint:lwc && npm run lint:aura",
"lint:aura": "eslint **/aura/**",
"lint:lwc": "eslint **/lwc/**",
"test": "npm run test:unit",
"test:unit": "sfdx-lwc-jest",
"test:unit:watch": "sfdx-lwc-jest --watch",
"test:unit:debug": "sfdx-lwc-jest --debug",
"test:unit:coverage": "sfdx-lwc-jest --coverage",
"packaging": "npx ts-node ./scripts/packaging.ts",
"preinstall": "npx npm-force-resolutions",
"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": {
"@babel/runtime": "^7.11.2",
"@prettier/plugin-xml": "^0.10.0",
"@salesforce/eslint-config-lwc": "^0.7.0",
"@salesforce/eslint-plugin-aura": "^1.4.0",
"@salesforce/sfdx-lwc-jest": "^0.9.2",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.11.5",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint": "^7.6.0",
"github-release-cli": "^2.0.0",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"prettier-plugin-apex": "^1.6.0",
"prettier": "^2.0.5",
"sfdx-cli": "^7.75.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"resolutions": {
"minimist": "^1.2.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
],
"**/{aura|lwc}/**": [
"eslint"
]
}
}