-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
45
46
47
{
"name": "express_goyoung2",
"version": "1.0.0",
"description": "express backend",
"main": "index.js",
"scripts": {
"build": "tsc -p .",
"start": "cross-env NODE_ENV=production node dist/app.js",
"dev": "cross-env NODE_ENV=dev nodemon --exec ts-node src/app.ts",
"production": "rm -rf dist node_modules && pnpm i && pnpm build && pnpm start"
},
"author": "goyoung2",
"license": "ISC",
"dependencies": {
"axios": "^1.2.0",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.6",
"dotenv": "^16.0.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.3",
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"express": "^4.18.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
},
"resolutions": {
"cookie": "0.6.0"
}
}