-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist",
"dev": "nodemon --ext ts,js,json --exec ts-node --files src",
"build": "rm -rf dist && webpack"
},
"keywords": [],
"author": "Devidea",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/crypto-js": "^4.0.1",
"@types/express": "^4.17.11",
"@types/multer": "^1.4.5",
"@types/node": "^14.14.37",
"@types/passport": "^1.0.6",
"@types/passport-github2": "^1.2.4",
"@types/passport-google-oauth20": "^2.0.7",
"@types/passport-naver": "^0.2.0",
"@types/uuid": "^8.3.0",
"awesome-typescript-loader": "^5.2.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.31.0",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-naver": "^1.0.6",
"uuid": "^8.3.2"
}
}