-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.51 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.51 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
{
"license": "UNLICENSED",
"name": "waldo-wikipedia-scripted-testing",
"type": "module",
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.22",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@waldoapp/wdio-service": "^1.1.0",
"@wdio/cli": "^9.0.0",
"@wdio/globals": "^9.0.0",
"@wdio/local-runner": "^9.0.0",
"@wdio/mocha-framework": "^9.0.0",
"@wdio/spec-reporter": "^9.0.0",
"@wdio/types": "^9.0.0",
"axios": "^1.6.5",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.0.4",
"yaml": "^2.3.4"
},
"scripts": {
"ios": "wdio ios/wdio.conf.ts",
"android": "wdio android/wdio.conf.ts",
"eslint:fix": "eslint --cache --cache-location=node_modules/.cache/eslint/ --fix .",
"eslint:check": "eslint --cache --cache-location=node_modules/.cache/eslint/ .",
"prettier:check": "prettier --cache --check .",
"prettier:format": "prettier --cache --write .",
"tsc:check": "tsc --noEmit",
"ci": "pnpm run eslint:check && pnpm run prettier:check && pnpm run tsc:check"
},
"prettier": {
"singleQuote": true,
"printWidth": 100,
"trailingComma": "all"
},
"packageManager": "pnpm@10.23.0+sha256.a1cdd7b468386a9d78a081da05d6049d7e598db62a299db92df21a7062a4b183"
}