-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.27 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
50
51
52
53
54
55
56
{
"name": "root",
"private": true,
"license": "MIT",
"keywords": [
"Server Side Include",
"Apache",
"Nginx"
],
"repository": {
"type": "git",
"url": "https://github.com/kunyan/server-side-include"
},
"description": "",
"engines": {
"node": ">=16.0.0"
},
"os": [
"darwin",
"linux"
],
"packageManager": "pnpm@7.33.7",
"scripts": {
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"commit": "cz",
"clean": "rimraf node_modules **/*/node_modules **/*/dist"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,md,html,css,scss}": [
"prettier --write"
],
"*.{ts,tsx}": [
"pnpm run lint"
]
},
"devDependencies": {
"@types/node": "17.0.45",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"esbuild": "0.21.1",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "4.9.5"
}
}