forked from trailheadapps/ecars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2 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
{
"name": "ecars",
"private": true,
"version": "1.0.0",
"description": "eCars - Salesforce Platform application demo",
"author": "Salesforce Developer Relations",
"license": "CC0-1.0",
"scripts": {
"clean": "lerna clean && rimraf node_modules **/node_modules",
"lint": "eslint .",
"test": "npm run lint && npm run test:unit && npm run test:services",
"test:unit": "lwc-jest",
"test:unit:watch": "lwc-jest --watch",
"test:unit:debug": "lwc-jest --debug",
"test:services": "cd apps/ecars-services && npm test",
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,ts,xml,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,ts,xml,yaml,yml}\"",
"postinstall": "node scripts/check-version.js && lerna exec -- npm install && lerna link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trailheadapps/ecars"
},
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.5.0"
},
"devDependencies": {
"@prettier/plugin-xml": "^0.12.0",
"@sa11y/jest": "^0.1.4-beta.0",
"@salesforce/eslint-config-lwc": "^0.7.0",
"@salesforce/sfdx-lwc-jest": "^0.9.2",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-plugin-jest": "^24.1.0",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"prettier-plugin-apex": "^1.7.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,ts,xml,yaml,yml}": [
"prettier --write"
],
"**/*.{js,ts}": [
"eslint"
]
}
}