forked from salesforce/offline-app-developer-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.25 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
37
38
39
40
{
"name": "offline-starter-kit",
"private": true,
"version": "1.0.0",
"description": "Salesforce Offline Starter Kit",
"scripts": {
"lint": "eslint \"force-app/**/*.{js,html}\"",
"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",
"prettier": "prettier --write \"force-app/**/*.js\"",
"prettier:verify": "prettier --list-different \"force-app/**/*.js\""
},
"devDependencies": {
"@lwc/engine-server": "^3.8.0",
"@lwc/eslint-plugin-lwc": "^1.7.2",
"@prettier/plugin-xml": "^3.2.0",
"@sa11y/jest": "^5.2.0",
"@salesforce/eslint-config-lwc": "^3.5.2",
"@salesforce/eslint-plugin-aura": "^2.1.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@salesforce/eslint-plugin-lwc-graph-analyzer": "^0.9.0",
"@salesforce/sfdx-lwc-jest": "^3.1.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"prettier": "^3.0.2",
"prettier-plugin-apex": "^2.0.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18"
},
"volta": {
"node": "18.17.1"
}
}