-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.24 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": "my-unsplash-api",
"version": "1.0.1",
"private": true,
"main": "src/server.ts",
"author": "Nathan Nguyen <67423224+nathan22x3@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"run:dev": "nodemon build/bundle.js",
"dev": "webpack --config ./webpack.dev.js",
"build": "webpack --config ./webpack.prod.js",
"start": "node build/bundle.js",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"axios": "^0.21.4",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"joi": "^17.4.2",
"mongodb": "^4.1.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/joi": "^17.2.3",
"@types/mongodb": "^4.0.7",
"@types/morgan": "^1.9.3",
"@types/node": "^16.7.10",
"@types/supertest": "^2.0.11",
"jest": "^27.3.1",
"nodemon": "^2.0.12",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.4",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.2.2"
}
}