-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "abbreve-project",
"private": true,
"version": "0.25.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"format": "prettier --ignore-path .gitignore --write \"**/*.{js,jsx,json}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"preview": "vite preview",
"prepare": "husky install",
"db:eject": "node public/server/scripts/compileDb.js",
"db:cleanup": "node public/server/scripts/cleanupDb.js",
"db:entry": "node public/server/scripts/enterDb.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scroll": "^1.8.7"
},
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.11",
"chalk": "^5.1.2",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.0",
"inquirer": "^9.1.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"vite": "^3.1.0"
}
}