-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
30 lines (30 loc) · 963 Bytes
/
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
{
"name": "@defi/site",
"version": "0.1.0",
"description": "DeFi community website",
"main": "index.js",
"repository": "https://github.com/defi/defi.github.io",
"author": "DeFi Team",
"license": "MIT",
"dependencies": {
"@zeit/next-typescript": "^1.1.1",
"emotion": "^9.2.12",
"emotion-normalize": "^8.0.0",
"emotion-server": "^9.2.12",
"next": "^7.0.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-emotion": "^9.2.12"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"deploy": "NODE_ENV=production rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && echo 'defi.network' > out/CNAME && git add out/ && git commit -m \"Deploy Next.js to gh-pages\" && git subtree push --prefix out origin gh-pages"
},
"devDependencies": {
"@types/next": "^7.0.3",
"@types/react": "^16.4.18",
"babel-plugin-emotion": "^9.2.11"
}
}