-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 990 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
{
"name": "next.js",
"version": "1.0.0",
"private": true,
"dependencies": {
"body-parser": "^1.18.2",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"firebase": "^4.6.0",
"firebase-admin": "^5.4.3",
"isomorphic-fetch": "^2.2.1",
"material-ui": "next",
"next": "latest",
"prop-types": "^15.6.0",
"re-base": "^3.0.5",
"react": "latest",
"react-dom": "latest",
"session-file-store": "^1.1.2"
},
"scripts": {
"dev": "node server.js",
"nextdev": "next",
"build": "next build",
"start": "next start",
"lint-watch": "nodemon **.js --exec \"eslint . --ext=jsx --ext=js\"",
"lint": "eslint . --ext=jsx --ext=js"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"prettier-eslint": "^8.2.1",
"nodemon": "^1.10.2"
}
}