-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "moments",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettify": "npx prettier --write ."
},
"dependencies": {
"@sanity/client": "^5.2.2",
"@sanity/image-url": "^1.0.2",
"@types/node": "18.14.4",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@uiw/react-markdown-preview": "^4.1.10",
"@uiw/react-md-editor": "^3.20.5",
"axios": "^1.3.4",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"next": "13.2.3",
"next-auth": "^4.20.1",
"next-remove-imports": "^1.0.10",
"npm": "^9.6.2",
"react": "18.2.0",
"react-content-loader": "^6.2.1",
"react-dom": "18.2.0",
"react-drag-drop-files": "^2.3.9",
"react-icons": "^4.7.1",
"react-markdown": "^8.0.5",
"react-modal": "^3.16.1",
"react-player": "^2.12.0",
"react-spinners": "^0.13.8",
"rehype-sanitize": "^5.0.1",
"remark-gfm": "^3.0.1",
"typescript": "4.9.5",
"uuid": "^9.0.0",
"zustand": "^4.3.5"
},
"devDependencies": {
"@types/js-cookie": "^3.0.3",
"@types/jsonwebtoken": "^9.0.1",
"@types/react-modal": "^3.13.1",
"@types/uuid": "^9.0.1",
"autoprefixer": "^10.4.13",
"js-cookie": "^3.0.1",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7"
},
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": true,
"singleQuote": true
}
}