-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "tomvanantwerp.com",
"version": "0.1.0",
"private": true,
"author": "Tom VanAntwerp",
"workspaces": [
"packages/*"
],
"scripts": {
"build:astro": "yarn workspace @tomvanantwerp-com/astro build",
"start": "yarn workspace @tomvanantwerp-com/astro dev",
"build": "yarn build:astro",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"leetcode": "plop leetcode",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"lodash": "^4.17.21",
"plop": "^4.0.0",
"prettier": "^3.1.0",
"typescript": "^5.3.3"
},
"browserslist": [
"last 2 versions"
],
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --cache --fix --ignore-path .gitignore",
"*.+(js|ts|jsx|tsx|json)": "prettier --write --ignore-path .gitignore"
},
"dependencies": {
"-": "^0.0.1"
}
}