-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 916 Bytes
/
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
{
"name": "notes.skytect.one",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "yarn run prettier -w ."
},
"dependencies": {
"clsx": "^2.1.1",
"next": "^14.2.3",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
"prism-react-renderer": "^2.3.1",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-player": "^2.16.0",
"sharp": "~0.33.3"
},
"devDependencies": {
"@types/node": "^20.12.11",
"@types/prismjs": "^1.26.4",
"@types/react": "^18.3.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"prettier": "^3.2.5",
"sass": "^1.77.1",
"typescript": "^5.4.5"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"semi": false,
"proseWrap": "always"
}
}