-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 1.2 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
{
"name": "ready-to-fly-apex-sdk",
"version": "1.0.0",
"description": "Ready to Fly (Apex SDK version)",
"scripts": {
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,slackapp,trigger,view,xml,yaml,yml}\"",
"prettier:verify": "prettier --check \"**/*.{cls,cmp,component,css,html,js,json,md,page,slackapp,trigger,view,xml,yaml,yml}\"",
"postinstall": "husky install",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
]
},
"author": "salesforce.com",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/trailheadapps/ready-to-fly-sdk"
},
"devDependencies": {
"@prettier/plugin-xml": "^2.2.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"eslint": "^8.23.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-apex": "^1.10.0"
},
"volta": {
"node": "14.17.3",
"npm": "6.14.13"
}
}