-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"deploy": "npm run build && npm run export",
"prettier": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"start": "next start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"@mapbox/rehype-prism": "^0.5.0",
"@mdx-js/loader": "^1.6.16",
"@mdx-js/react": "^1.6.16",
"@next/mdx": "^9.5.1",
"@papercups-io/chat-builder": "0.0.12",
"@papercups-io/chat-widget": "^1.1.2",
"@papercups-io/storytime": "^1.0.5",
"antd": "4.4.2",
"framer-motion": "^2.9.1",
"next": "9.4.4",
"react": "16.13.1",
"react-ace": "^9.4.1",
"react-dom": "16.13.1",
"react-ga": "^3.1.2",
"rebass": "^4.0.7",
"remark-emoji": "^2.1.0"
},
"devDependencies": {
"@types/mdx-js__react": "^1.5.2",
"@types/node": "^14.0.23",
"@types/react": "^16.9.43",
"@types/rebass": "^4.0.6",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
}
}