-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.79 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "fumi-no",
"version": "1.1.8",
"description": "Fumino - OSS for your happiness",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format-check": "prettier --check ./**/*.{ts,tsx}",
"type-check": "tsc --noEmit",
"eslint-check": "next lint",
"lint": "yarn format-check && yarn type-check && yarn eslint-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lauslim12/Fumi-no.git"
},
"author": "Nicholas Dwiarto <nicholasdwiarto@yahoo.com> (https://www.nicholasdw.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lauslim12/Fumi-no/issues"
},
"homepage": "https://www.fumi-no.com",
"dependencies": {
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/quicksand": "^4.5.9",
"@fontsource/raleway": "^4.5.8",
"focus-visible": "^5.2.0",
"framer-motion": "^6.3.3",
"next": "12.1.6",
"next-seo": "^5.4.0",
"nprogress": "^0.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@types/node": "^17.0.31",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.8",
"eslint": "^8.14.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"eslintConfig": {
"extends": [
"next/core-web-vitals",
"prettier"
],
"plugins": [
"simple-import-sort"
],
"rules": {
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error"
}
},
"prettier": {
"singleQuote": true,
"printWidth": 100,
"endOfLine": "auto"
}
}