-
Notifications
You must be signed in to change notification settings - Fork 155
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "fluidity",
"description": "An accordion based startpage.",
"version": "0.6.0",
"private": true,
"homepage": "./",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint ./src --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@pretty-cozy/eslint-config": "^0.2.0",
"@types/react": "^18.2.18",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"gh-pages": "^4.0.0",
"typescript": "^4.9.5",
"vite": "^4.4.8",
"vite-plugin-checker": "^0.6.1"
},
"browserslist": [
"defaults"
],
"eslintConfig": {
"extends": [
"@pretty-cozy/eslint-config/base-ts",
"@pretty-cozy/eslint-config/react"
],
"rules": {
"check-file/folder-naming-convention": "off",
"react/jsx-max-depth": "off"
}
}
}