-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.31 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
{
"name": "@beam/native-userscripts",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"Beam/**/*"
],
"scripts": {
"alltests": "jest --runInBand",
"alltests-ci": "jest --ci --silent --verbose --reporters=default --reporters=jest-junit --coverage",
"lint": "eslint --format gitlab ./Beam",
"lint-fix": "eslint --format gitlab --fix ./Beam",
"madge": "madge --circular --extensions ts,js ./",
"generate": "node ./generator/generate.js",
"buildcomponents": "yarn workspaces foreach run build --color",
"buildpackages": "yarn workspace @beam/native-beamtypes run build && yarn workspace @beam/native-utils run build && yarn workspace @beam/native-testmock run build",
"builder": "yarn buildpackages && yarn buildcomponents",
"doctor": "yarn dlx @yarnpkg/doctor ./"
},
"devDependencies": {
"@types/eslint": "^8",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@yarnpkg/sdks": "^3.0.0-rc.14",
"eslint": "^8.12.0",
"eslint-formatter-gitlab": "^3.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"generate-template-files": "^3.2.0",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"madge": "^5.0.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}