-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
49 lines (49 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@prerenderer/monorepo",
"description": "Monorepo for prerendering packages.",
"workspaces": [
"packages/*"
],
"author": {
"name": "Adrien Foulon",
"email": "[email protected]"
},
"scripts": {
"prebuild": "rimraf ./packages/*/dist ./packages/*/types",
"build": "npx lerna run build",
"test": "npx lerna run test:logs --",
"test:silent": "npx lerna run test --",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"ajv": "^8.12.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.2",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"lerna": "^8.0.2",
"typescript": "^5.3.3",
"lint-staged": "^15.2.0"
},
"engines": {
"node": ">=14",
"npm": ">=8"
},
"license": "MIT",
"private": true,
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{ts,js,mjs}": [
"npm run lint:fix"
]
}
}