forked from trailheadapps/ready-to-fly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.1 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
{
"name": "salesforce-app",
"private": true,
"version": "1.0.0",
"description": "Salesforce App",
"scripts": {
"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}\"",
"postinstall": "lerna exec -- npm install && husky install",
"precommit": "lint-staged",
"lint": "lerna exec -- npm run lint"
},
"devDependencies": {
"@prettier/plugin-xml": "^2.1.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"eslint": "^8.8.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^8.0.1",
"lerna": "^5.0.0",
"lint-staged": "^12.1.6",
"prettier": "^2.5.1",
"prettier-plugin-apex": "^1.10.0"
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
]
},
"volta": {
"node": "14.17.3",
"npm": "6.14.13"
}
}