-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 933 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
31
32
33
34
35
36
37
38
39
{
"name": "nextjsfirebase",
"version": "0.0.4",
"description": "demo project utilizing firebase as datastore inn nextjs",
"scripts": {
"dev": "next",
"build": "next build",
"prestart": "next build",
"start": "next start -p $PORT",
"start-local": "next start -p 5000",
"lint": "standard",
"lint-fix": "standard --fix"
},
"author": "Lukas Strassel",
"license": "MIT",
"dependencies": {
"date-fns": "^1.28.5",
"firebase": "^4.1.3",
"flexboxgrid": "^6.3.1",
"mobx": "^3.1.16",
"mobx-react": "^4.2.1",
"next": "^2.4.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"segment-js": "^1.0.8"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-root-import": "^4.1.8",
"standard": "^10.0.2"
},
"standard": {
"parser": "babel-eslint"
},
"engines": {
"node": "8.x"
}
}