-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.21 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.21 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
67
68
69
70
71
72
73
{
"name": "my-test-app-2020",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"clean": "lerna exec -- rimraf build/ tsconfig.tsbuildinfo && rimraf node_modules",
"lint": "eslint '**/*.{js,ts}'",
"format": "prettier --write '{packages,scripts}/**/*.{js,ts,json,md}'",
"test:wdio": "cd packages/integration-wdio && yarn test",
"test": "yarn test:unit",
"build:ts": "tsc -b",
"build": "yarn build:ts && lerna run build",
"watch:ts": "tsc -b --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --config ./scripts/jest/root.config.js --runInBand",
"test:salesforce": "cd packages/@my-scope/tmp-pageobjects && yarn test"
},
"workspaces": [
"packages/*",
"packages/@my-scope/*"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.2",
"@rollup/plugin-typescript": "^6.0.0",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/serve-static": "^1.13.3",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"glob": "^7.1.6",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lint-staged": "^8.1.7",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.29.0",
"rollup-plugin-node-builtins": "^2.1.2",
"typescript": "^3.8.3",
"@utam/core": "^0.0.1-alpha9",
"@utam/compiler": "^0.0.1-alpha9",
"@utam/loader": "^0.0.1-alpha9",
"@utam/diagnostics": "^0.0.1-alpha9",
"@utam/dom-webdriver": "^0.0.1-alpha9",
"utam": "^0.0.1-alpha9",
"wdio-utam-service": "^0.0.1-alpha9"
},
"volta": {
"node": "12.16.2",
"yarn": "1.22.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"engines": {
"node": ">=12.16.2 <13"
}
}