forked from ThinLineIT/CtrlF_Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.57 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.57 KB
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": "ctrlf",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint --fix",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"**/*.{js,jsx}": [
"prettier --write"
]
},
"dependencies": {
"@egjs/react-infinitegrid": "^3.3.0",
"@hookform/error-message": "^2.0.0",
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"framer-motion": "^4.1.17",
"github-markdown-css": "^5.0.0",
"insert-text-at-cursor": "^0.3.0",
"js-cookie": "^3.0.1",
"next": "11.1.2",
"next-images": "^1.8.1",
"react": "17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "17.0.2",
"react-hook-form": "^7.14.2",
"react-markdown": "^7.1.0",
"react-motion": "^0.5.2",
"react-router-dom": "^5.2.1",
"react-ssr-prepass": "^1.4.0",
"react-syntax-highlighter": "^15.4.4",
"recoil": "^0.4.1",
"recoil-persist": "^3.0.0",
"rehype-raw": "^6.1.0",
"remark-breaks": "^3.0.2",
"remark-emoji": "^3.0.2",
"remark-gfm": "^2.0.0",
"remark-toc": "^8.0.1",
"rodal": "^1.8.1",
"styled-components": "^5.3.1",
"styled-react-modal": "^2.1.0",
"typescript": "^4.4.2",
"yarn": "^1.22.15"
},
"devDependencies": {
"babel-plugin-inline-react-svg": "^2.0.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.3",
"prettier": "^2.5.1",
"yarn-audit-fix": "^7.0.7"
}
}