-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 KB
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_PATH=./build node build/index.js",
"build": "tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --pretty --transpile-only src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "1.1.3",
"bcryptjs": "^2.4.3",
"cookie": "^0.5.0",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"gapi": "^0.0.3",
"gapi-script": "^1.2.0",
"google-auth-library": "^8.7.0",
"googleapis": "^109.0.1",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.1",
"node-rsa": "^1.1.1",
"passport": "^0.5.3",
"passport-google-oauth20": "^2.0.0",
"stripe": "^11.16.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/node": "^18.7.16",
"@types/passport": "^1.0.11",
"@types/passport-google-oauth20": "^2.0.11",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.2"
}
}