-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 899 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 899 Bytes
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
{
"name": "oauth-react-boilerplate",
"version": "1.0.0",
"description": "",
"main": "build/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prestart": "tsc && cp -r ./views ./build/views && cd client && npm run build",
"start": "node build/server.js"
},
"author": "Steve Peters",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"dotenv": "^8.0.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"express-session": "^1.16.2",
"mongoose": "^5.6.9",
"passport": "^0.4.0",
"passport-github2": "^0.1.11"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/dotenv": "^6.1.1",
"@types/ejs": "^2.6.3",
"@types/express": "^4.17.0",
"@types/express-session": "^1.15.13",
"@types/mongoose": "^5.5.12",
"@types/passport": "^1.0.0",
"@types/passport-github2": "^1.2.4"
}
}