-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": "trungtinpham",
"scripts": {
"start": "node dist/src/index",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"test": "mocha --require ts-node/register --watch --watch-files src, tests/**/*.ts",
"tsc:webpack": "tsc && webpack --mode production",
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.2.21",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.4",
"@types/lodash": "^4.14.171",
"@types/mocha": "^9.0.0",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/nanoid": "^3.0.0",
"@types/node": "^16.4.9",
"@types/swagger-ui-express": "^4.1.3",
"chai": "^4.3.4",
"lodash-webpack-plugin": "^0.11.6",
"mocha": "^9.1.1",
"node-polyfill-webpack-plugin": "^1.1.4",
"nodemon": "^2.0.12",
"ts-loader": "^9.2.5",
"ts-node": "^10.1.0",
"tsc": "^2.0.3",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.12.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.0.2",
"morgan": "^1.10.0",
"nanoid": "^3.1.23",
"request": "2.79.0",
"swagger-ui-express": "^4.1.6"
}
}