generated from aichner/nextjs-redux-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.88 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
59
60
{
"name": "nextjs-template",
"version": "1.0.0",
"private": true,
"description": "ReactJS using NextJS for improved SEO and performance.",
"main": "dist/server/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/aichner/nextjs-template.git"
},
"keywords": [],
"author": "Christian Aichner",
"license": "(EUPL-1.2)",
"bugs": {
"url": "https://github.com/aichner/nextjs-template/issues"
},
"homepage": "https://github.com/aichner/nextjs-template#readme",
"engines": {
"node": "10"
},
"scripts": {
"dev:client": "next src/client",
"dev:server": "babel src/server --out-dir dist/server --source-maps --watch",
"dev": "npm run dev:client & npm run dev:server",
"build:client": "next build src/client",
"build:server": "babel src/server --out-dir dist/server --source-maps",
"build": "npm run build:client && npm run build:server",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=production firebase serve --only functions,hosting",
"predeploy": "rimraf dist/ && npm run build",
"deploy": "cross-env NODE_ENV=production firebase deploy --only functions,hosting"
},
"dependencies": {
"@apollo/client": "^3.3.6",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"apollo-boost": "^0.4.9",
"firebase-admin": "^9.2.0",
"firebase-functions": "^3.11.0",
"graphql": "^15.3.0",
"mdbreact": "file:mdbreact-4.26.1.tgz",
"next": "^9.5.5",
"next-compose-plugins": "^2.2.0",
"next-fonts": "^1.4.0",
"next-images": "^1.5.0",
"next-seo": "^4.13.0",
"react": "^16.13.1",
"react-dom": "16.13.1",
"react-reveal": "^1.2.2",
"sass": "^1.26.11",
"tinycolor2": "^1.4.2"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"cross-env": "^7.0.2",
"rimraf": "^3.0.2"
}
}