-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
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
{
"name": "fridge-website",
"version": "1.0.0",
"description": "Website and documentation for Fridge CMS platform.",
"main": "n/a",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"deploy": "npm run export && s3cmd sync ./out/ s3://fridgecms.com --delete-removed --acl-public"
},
"keywords": [],
"author": "Mike Kruk <mike@ripeworks.com>",
"dependencies": {
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^10.1.3",
"cookie": "^0.3.1",
"date-fns": "^1.29.0",
"dom-helpers": "^3.2.1",
"grid-styled": "^2.0.0-11",
"hast-to-hyperscript": "^3.0.2",
"next": "^10.1.3",
"postcss-color-function": "^4.0.0",
"postcss-nested": "^2.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"refractor": "^2.0.0",
"styled-jsx-plugin-postcss": "^4.0.1"
},
"postcss": {
"plugins": {
"postcss-nested": {},
"postcss-color-function": {}
}
},
"devDependencies": {
"babel-plugin-module-resolver": "^3.1.1"
}
}