-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "northwind-api",
"version": "1.0.0",
"description": "A RESTful API providing CRUD functionality for managing Employees in a PostgreSQL database.",
"private": true,
"scripts": {
"clean": "rimraf dist",
"build": "webpack --mode development",
"build:watch": "webpack --mode development --watch",
"run": "node ./dist/bundle.js",
"run:watch": "nodemon ./dist/bundle.js --watch ./dist",
"start": "npm-run-all --parallel build:watch run:watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhaeussermann/northwind-api.git"
},
"keywords": [
"RESTful",
"API",
"Express",
"Northwind"
],
"author": "Bernhard Häussermann",
"license": "ISC",
"bugs": {
"url": "https://github.com/bhaeussermann/northwind-api/issues"
},
"homepage": "https://github.com/bhaeussermann/northwind-api#readme",
"devDependencies": {
"@types/express": "^4.17.7",
"@types/pg": "^7.14.4",
"copy-webpack-plugin": "^6.0.3",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.18.2",
"express-async-handler": "^1.1.4",
"express-openapi-validator": "^4.0.0",
"moment": "^2.29.4",
"pg": "^8.3.0",
"pg-cursor": "^2.3.0",
"swagger-ui-express": "^4.6.0",
"yamljs": "^0.3.0"
}
}