-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.3 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
{
"name": "hack-for-impact",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint:check": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"prettier:check": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"compile:check": "npx tsc --noEmit",
"check": "npm run lint:check && npm run prettier:check && npm run compile:check"
},
"dependencies": {
"@astrojs/check": "^0.3.4",
"@astrojs/react": "^3.0.9",
"@fontsource-variable/lexend-deca": "^5.0.8",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"astro": "^4.0.9",
"framer-motion": "^10.17.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.69.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.31.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
}
}