-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.89 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.89 KB
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
{
"name": "masterbom-api",
"version": "1.0.0",
"description": "Bill of Materials in one place",
"main": "dist/index.js",
"scripts": {
"clean-dist": "rm -rf dist/*",
"lint": "eslint --ext .ts .",
"daemon": "nodemon --watch src -e js,ts,ejs,css --exec npm run dev:serve",
"tsc": "tsc",
"probe-api": "",
"dev:serve": "npm run build && npm run serve",
"prebuild": "npm run clean-dist",
"build": "npm run tsc",
"serve": "node .",
"dev": "./scripts/dev.sh",
"pull": "docker compose -f docker/dev/docker-compose.yaml pull",
"clean": "docker compose -f docker/dev/docker-compose.yaml down --rmi all --volumes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Masterbomb/api.git"
},
"keywords": [],
"author": "Christian Sargusingh",
"license": "ISC",
"bugs": {
"url": "https://github.com/Masterbomb/api/issues"
},
"homepage": "https://github.com/cSDes1gn/Masterbomb/api#readme",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.10",
"@types/pg": "^8.6.4",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-plugin-jsdoc": "^37.6.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/express-serve-static-core": "^4.17.28",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"cors": "^2.8.5",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"morgan": "^1.10.0",
"pg": "^8.5.1",
"pg-promise": "^10.11.1",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"typeorm": "^0.2.41"
}
}