-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
61 lines (61 loc) · 2.23 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "flashlight",
"version": "0.18.0",
"private": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/bamlab/flashlight.git"
},
"author": {
"name": "Almouro",
"email": "alexandrem@bam.tech"
},
"license": "MIT",
"workspaces": [
"packages/*/*",
"examples/*"
],
"bugs": {
"url": "https://github.com/bamlab/flashlight/issues"
},
"scripts": {
"clean-dist": "rm -rf packages/*/*/dist && rm -rf packages/*/*/tsconfig.tsbuildinfo",
"watch": "tsc --build --watch",
"test": "prettier --check . && yarn build && eslint . --max-warnings 0 && jest",
"test:coverage": "yarn clean-dist && jest --coverage",
"test:lint": "eslint . --ext .js,.ts,.tsx --cache",
"run-cli-example": "node packages/cli-example",
"build": "rm -rf .parcel-cache && yarn clean-dist && tsc --build && yarn workspace @perf-profiler/web-reporter build && yarn workspace @perf-profiler/measure build",
"release": "yarn build && lerna publish",
"test:e2e": "mkdir -p report && node packages/plugins/aws-device-farm/dist/bin.js runTest --apkPath .github/workflows/example.apk --projectName 'Flashlight-Serverless' --reportDestinationPath report --testCommand 'npx ts-node examples/e2e/appium-ci.test.ts' --testFolder .",
"prepare": "husky"
},
"homepage": "https://github.com/bamlab/flashlight#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/lodash": "^4.17.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/utils": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-custom-rules": "link:./packages/eslint-plugin-flashlight-eslint-rules/dist",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^9.0.11",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lerna": "^8.1.2",
"lint-staged": "15.2.10",
"prettier": "^3.2.5",
"ts-jest": "^29.0.3",
"typescript": "^5.4.2"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,md,json}": "prettier --write"
},
"dependencies": {}
}