-
Notifications
You must be signed in to change notification settings - Fork 288
/
package.json
38 lines (38 loc) · 1.2 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"typecheck": "npx tsc && echo 'type checking was successful'",
"build": "cross-env NODE_ENV=production lerna run build",
"dev": "lerna watch -- lerna run build --scope=\\$LERNA_PACKAGE_NAME",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test": "jest --runInBand",
"test:incognito": "cross-env INCOGNITO=true jest --runInBand",
"release": "npm run build && lerna publish --conventional-commits && npx conventional-github-releaser -p angular",
"release-canary": "npm run build && lerna publish --canary --dist-tag canary"
},
"devDependencies": {
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.39",
"@swc/jest": "^0.2.36",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"conventional-github-releaser": "^3.1.5",
"cross-env": "^7.0.3",
"eslint": "^8.54.0",
"eslint-plugin-jest": "^28.8.3",
"express": "^4.21.1",
"jest": "^29.7.0",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"puppeteer": "^23.6.0",
"typescript": "^5.6.3"
},
"name": "jest-puppeteer",
"engines": {
"node": ">=16"
}
}