-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 927 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
{
"name": "arconnect-web-new",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ."
},
"gitHooks": {
"pre-commit": "prettier --write . && next lint && git add -A"
},
"dependencies": {
"@geist-ui/react": "^2.2.0",
"detect-browser": "^5.2.1",
"framer-motion": "^5.3.0",
"isomorphic-dompurify": "^0.15.0",
"next": "^12.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-markdown": "^7.1.0",
"react-marked-markdown": "^1.4.6",
"sass": "^1.43.2",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@types/react": "17.0.30",
"@types/styled-components": "^5.1.15",
"eslint": "~7.0.0",
"eslint-config-next": "^12.0.2",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
}
}