-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 989 Bytes
/
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
{
"name": "baselayer",
"version": "0.1.5",
"description": "",
"main": "index.js",
"scripts": {
"ExampleParser": "tsx utils/ExampleParser.ts",
"BaseParser": "tsx utils/BaseParser.ts",
"prepare": "husky install",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"lint-staged": {
"web/src/components/base/*": [
"pnpm run BaseParser"
],
"web/src/Examples/**/*": [
"pnpm run ExampleParser",
"pnpm dlx prettier --write './web/src/templates/examples.ts'"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-astro": "^0.27.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-solid": "^0.12.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"tsx": "^4.7.0"
}
}