forked from forcedotcom/LWC-Mobile-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 848 Bytes
/
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
{
"name": "lwc-mobile-samples",
"private": true,
"version": "0.0.1",
"description": "LWC Mobile Samples",
"repository": {
"type": "git",
"url": "https://github.com/forcedotcom/LWC-Mobile-Samples"
},
"license": "CC0",
"scripts": {
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"test": "lerna run test",
"prettier": "lerna run prettier",
"prettier:verify": "lerna run prettier:verify",
"prepare": "husky install",
"precommit": "yarn lint && yarn prettier:verify && yarn test"
},
"devDependencies": {
"husky": "^8.0.3",
"lerna": "^8.0.0"
},
"dependencies": {},
"engines": {
"node": ">=18"
},
"workspaces": [
"projects/*",
"projects/LocalPreview/HelloWorld"
]
}