-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "outline-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port=4000",
"build": "next build",
"start": "next start",
"deploy": "/bin/sh deploy.sh",
"lint": "yarn eslint \"{pages,components,lib}/**/*.{ts,tsx}\""
},
"dependencies": {
"@radix-ui/react-tooltip": "^1.0.7",
"@scalar/api-reference-react": "^0.2.5",
"classnames": "^2.2.6",
"core-js": "^3.9.1",
"date-fns": "^2.14.0",
"gray-matter": "^4.0.2",
"isomorphic-fetch": "^3.0.0",
"mobx": "^6.0.0",
"next": "^12.1.0",
"outline-icons": "^1.31.0",
"polished": "^3.6.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.1.2",
"react-markdown": "^8.0.4",
"react-tabs": "^3.1.1",
"remark": "^14.0.2",
"strip-markdown": "^5.0.0",
"styled-components": "^5.2.2",
"tiny-cookie": "^2.3.2"
},
"devDependencies": {
"@types/node": "^14.0.11",
"@types/react": "^16.9.35",
"babel-eslint": "^10.1.0",
"eslint": "^7.2.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^2.0.5",
"typescript": "^4.3.2"
}
}