-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.94 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "guest-book-backend",
"version": "1.0.0",
"description": "방명록 프로젝트 백엔드",
"main": "src/app.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && PHASE=prod NODE_ENV=production webpack",
"build:local": "cross-env PHASE=local NODE_ENV=development webpack --watch",
"build:dev": "cross-env PHASE=dev NODE_ENV=development webpack --watch",
"start": "cross-env PHASE=prod node dist/app.js",
"test": "cross-env PHASE=test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jindotail/guest-book-backend.git"
},
"author": "mimseong",
"license": "ISC",
"bugs": {
"url": "https://github.com/jindotail/guest-book-backend/issues"
},
"homepage": "https://github.com/jindotail/guest-book-backend#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.35",
"@types/request-ip": "^0.0.37",
"@types/supertest": "^2.0.12",
"dotenv-webpack": "^8.0.1",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"nodemon-webpack-plugin": "^4.8.1",
"supertest": "^6.2.3",
"ts-jest": "^28.0.2",
"ts-loader": "^9.3.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.8.2",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"argon2": "^0.28.5",
"axios": "^1.3.5",
"body-parser": "^1.20.0",
"celebrate": "^15.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"firebase": "^9.9.3",
"firebase-admin": "^11.0.1",
"jsonwebtoken": "^8.5.1",
"reflect-metadata": "^0.1.13",
"request-ip": "^3.3.0",
"typedi": "^0.10.0",
"webpack": "^5.74.0",
"winston": "^3.7.2"
}
}