-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 873 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
{
"name": "next-express",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon",
"start:next": "next",
"build": "next build",
"build:server": "tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node dist/index.js"
},
"dependencies": {
"aws-sdk": "^2.927.0",
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"googleapis": "^74.0.0",
"next": "10.2.2",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-twitter": "^1.0.4",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^15.6.0",
"@types/passport": "^1.0.6",
"@types/react": "^17.0.6",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
}
}