-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "shoppinglistapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:catalogue": "npm run build:clean && nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/Contexts/catalogue/app/start.ts",
"build:clean": "npm run build:tsc",
"build:tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rghermosa/shoppinglistapp.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rghermosa/shoppinglistapp/issues"
},
"homepage": "https://github.com/rghermosa/shoppinglistapp#readme",
"devDependencies": {
"@types/cli-color": "^2.0.2",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.13",
"@types/glob": "^7.2.0",
"@types/node": "^14.18.22",
"@types/uuid": "^8.3.4",
"errorhandler": "^1.5.1",
"express": "^4.17.2",
"express-promise-router": "^4.1.1",
"nodemon": "^2.0.19",
"ts-node": "^10.8.2",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@nestjs/common": "^9.0.11",
"@nestjs/core": "^9.0.11",
"@types/bcrypt": "^5.0.0",
"@types/mysql": "^2.15.21",
"chalk": "^5.0.1",
"cli-color": "^2.0.3",
"convict": "^6.2.3",
"glob": "^8.0.3",
"inversify": "^6.0.1",
"jest": "^28.1.3",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.6",
"tsyringe": "^4.7.0",
"typeorm": "^0.3.7",
"uuid": "^8.3.2",
"winston": "^3.8.1"
}
}