-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.34 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
{
"name": "ulc-schedule-maker-v2",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "[email protected]:ejkim1996/ulc-schedule-maker-v2.git",
"author": "Laksh Chakraborty <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npx tsc",
"start": "node dist/src/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/src/index.js\" \"cd client_next && yarn dev\""
},
"dependencies": {
"@googleapis/calendar": "^3.0.0",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mongoose": "^6.6.5",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/node": "^18.11.0",
"@types/passport": "^1.0.11",
"@types/passport-google-oauth20": "^2.0.11",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"concurrently": "^7.4.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.11",
"nodemon": "^2.0.20",
"typescript": "*"
}
}