-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "nextjs-start",
"private": true,
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "nodemon server/app.js --watch server",
"build": "next build",
"start": "node server/app.js",
"lint": "eslint components pages lib server",
"test": "jest --coverage",
"processes": "ss -lptn 'sport = :8000'",
"kill-pud": "kill -9 <pid>"
},
"dependencies": {
"@octokit/rest": "^15.15.1",
"compression": "^1.7.3",
"connect-mongo": "^2.0.1",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"googleapis": "^34.0.0",
"helmet": "^3.14.0",
"htmlescape": "^1.1.1",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.11",
"mongoose": "^5.3.5",
"next": "^7.0.2",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-jss": "^8.6.1",
"react-stripe-checkout": "^2.6.3",
"request": "^2.88.0",
"winston": "^3.1.0",
"yarn-upgrade-all": "^0.5.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"nodemon": "^1.18.4"
}
}