-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.25 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
{
"name": "blair3sat-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"rename": "node -e \"require('fs').rename('out', 'public', function(err) { if (err) console.log(err); console.log('File successfully renamed!') })\"",
"build": "next build && next export && npm run rename",
"export": "next export",
"start": "next start",
"deploy": "next build && next export -o docs && git checkout -- docs/CNAME && git checkout -- docs/.nojekyll && git add docs && git commit -m \"chore: regen site\" && git push origin master"
},
"dependencies": {
"@mdx-js/loader": "1.5.1",
"@next/mdx": "9.1.2",
"@zeit/next-mdx": "^1.2.0",
"bulma": "^0.8.0",
"mdx": "^0.3.1",
"next": "^9.3.2",
"next-compose-plugins": "^2.2.0",
"next-mdx-blog": "^2.0.1",
"raw-loader": "3.1.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-flip-toolkit": "^7.0.7",
"react-parallax": "2.2.4",
"react-pdf": "^4.1.0",
"remark-slug": "5.1.2",
"remark-toc": "^6.0.0",
"showdown": "1.9.1",
"styled-components": "^4.4.1",
"three": "^0.110.0",
"unist-util-visit": "^2.0.1"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.10.6",
"prettier": "^1.19.1"
}
}