-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.11 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.11 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
59
60
61
62
63
64
65
66
{
"name": "utam-js-recipes",
"license": "MIT",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"test": "wdio",
"build": "yarn compile:utam && yarn generate:utam",
"compile:utam": "utam -c utam.config.js && cd utam-preview && yarn compile",
"generate:utam": "cd utam-generator && yarn generate && yarn compile",
"create:env": "node scripts/create-env-file.js",
"generate:login": "node scripts/generate-login-url.js",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.7",
"@babel/register": "^7.23.7",
"@lwc/eslint-plugin-lwc": "^1.7.2",
"@salesforce/eslint-config-lwc": "^3.5.2",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@salesforce/sfdx-lwc-jest": "^3.1.0",
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/jasmine": "5.1.4",
"@wdio/appium-service": "^8.27.0",
"@wdio/cli": "^8.27.1",
"@wdio/jasmine-framework": "^8.27.0",
"@wdio/local-runner": "^8.27.0",
"@wdio/spec-reporter": "^8.27.0",
"dotenv": "^16.3.1",
"envfile": "^7.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jest": "^27.6.1",
"eslint-plugin-wdio": "^8.24.12",
"husky": "^8.0.3",
"isbinaryfile": "^5.0.0",
"lint-staged": "^15.2.2",
"prettier": "3.1.1",
"salesforce-pageobjects": "^10.0.2",
"wdio-utam-service": "^3.2.2"
},
"volta": {
"node": "20.9.0"
},
"engines": {
"node": ">= 18"
},
"packageManager": "yarn@4.5.1",
"workspaces": [
"./",
"utam-preview",
"utam-generator"
],
"lint-staged": {
"*.{js,css,md}": "prettier --write",
"*.js": "eslint"
}
}