-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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": "portfolio-tom",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"lint": "eslint . --fix",
"preview": "astro preview",
"astro": "astro",
"phoenix": "rm -f package-lock.json && rm -rf ./node/modules && npm install --no-fund --no-audit --no-package-lock",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/react": "^1.1.3",
"@astrojs/tailwind": "^2.0.1",
"@uiball/loaders": "^1.2.6",
"astro": "^1.2.6",
"autoprefixer": "^10.4.12",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"react-scroll": "^1.8.9",
"tailwindcss": "^3.1.8",
"tailwindcss-animation": "^0.1.2",
"tailwindcss-animation-delay": "^1.0.7"
},
"devDependencies": {
"@astrojs/vercel": "^2.1.0",
"@babel/eslint-parser": "^7.19.1",
"@types/react": "^18.0.24",
"@types/react-scroll": "^1.8.6",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "5.36.2",
"astro": "1.1.5",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-astro": "^0.17.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.5.4",
"prettier-plugin-tailwindcss": "^0.1.13",
"react-rough-notation": "^1.0.3",
"rough-notation": "^0.5.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md,astro}": "prettier --write"
}
}