-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 807 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 807 Bytes
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
{
"private": true,
"name": "@compositor/kit-next",
"description": "Kit + Next.js",
"scripts": {
"start": "NODE_ENV=production node server",
"build": "next build",
"clean": "rm -rf out",
"dev": "node server",
"export": "next export",
"format": "prettier --write '{components,pages}/**/*.js'"
},
"dependencies": {
"@compositor/kit": "^1.0.20",
"@mdx-js/mdx": "^0.9.0",
"@zeit/next-mdx": "^1.1.0",
"express": "^4.16.3",
"next": "^11.1.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"remark-emoji": "^2.0.1",
"remark-images": "^0.8.1",
"remark-unwrap-images": "^0.0.2-0",
"standard-components": "^1.0.0-2"
},
"devDependencies": {
"prettier": "^1.12.1"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}