forked from microsoft/playwright-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.17 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
{
"private": true,
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@jest/types": "^25.2.6",
"@types/graceful-fs": "^4.1.3",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^6.8.0",
"eslint-plugin-notice": "^0.9.10",
"expect": "^25.3.0",
"glob": "^7.1.6",
"jest": "^25.2.7",
"jest-runner": "^25.2.7",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
},
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest",
"lint": "node scripts/lintPackages.js && eslint . --ext js,ts",
"build": "tsc --build tsconfig.json",
"watch": "tsc --build tsconfig.json --watch",
"clean": "tsc --build tsconfig.json --clean && rimraf packages/*/out",
"prepare": "yarn run build",
"update-version": "node scripts/updateVersion.js"
},
"version": "0.0.0"
}