-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.47 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
{
"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": {
"@babel/core": "^7.15.0",
"@mapbox/rehype-prism": "^0.5.0",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^11.1.0",
"@papercups-io/chat-builder": "0.0.7",
"@papercups-io/chat-widget": "^1.3.0",
"@papercups-io/storytime": "^1.0.5",
"@tailwindcss/typography": "^0.4.1",
"axios": "^0.21.1",
"framer-motion": "^2.9.1",
"next": "^11.1.0",
"posthog-js": "^1.4.4",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-intersection-observer": "^8.33.1",
"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",
"autoprefixer": "^10.3.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"postcss": "^8.3.6",
"prettier": "^2.0.5",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5"
}
}