-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.67 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "foodies-backend",
"version": "1.0.0",
"description": "Finding the best restaurant promotions and deals while supporting local 🍔",
"keywords": [],
"homepage": "https://github.com/ubclaunchpad/foodies#readme",
"bugs": {
"url": "https://github.com/ubclaunchpad/foodies/issues"
},
"license": "ISC",
"author": "",
"main": "src/main/Index.ts",
"scripts": {
"build": "tsc --project ./",
"prestart": "yarn run build",
"start": "nodemon src/main/Index.ts",
"test": "jest --verbose",
"lint": "eslint . --ext .ts,.tsx",
"lintFix": "eslint . --ext .ts,.tsx --fix",
"prettier": "prettier --write .",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"dropSchema": "yarn run typeorm schema:drop",
"syncSchema": "yarn run typeorm schema:sync",
"loadSqlData": "psql -d foodies -f src/main/resources/init_data.sql --username=postgres",
"run_migration": "ts-node ./node_modules/typeorm/cli.js migration:run",
"revert_migration": "ts-node ./node_modules/typeorm/cli.js migration:revert"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lintFix",
"yarn prettier"
]
},
"dependencies": {
"@firebase/app-types": "0.6.1",
"@googlemaps/google-maps-services-js": "3.1.16",
"@types/bcrypt": "^3.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.8",
"@types/node": "^14.14.2",
"@types/node-geocoder": "^3.24.1",
"@types/redis": "^2.8.28",
"@types/request-promise": "^4.1.47",
"aws-sdk": "^2.874.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase-admin": "^9.4.2",
"joi": "^17.3.0",
"node-geocoder": "^3.27.0",
"nodemon": "^2.0.6",
"pg": "^8.4.2",
"query-string": "^6.13.7",
"redis": "^3.0.2",
"request": "^2.34",
"request-promise": "^4.2.6",
"ts-node": "^9.0.0",
"typeorm": "^0.2.28",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/mock-aws-s3": "^2.6.1",
"@types/redis-mock": "^0.17.0",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "4.14.2",
"@typescript-eslint/parser": "4.14.2",
"axios-mock-adapter": "1.19.0",
"eslint": "7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "3.3.1",
"firebase-mock": "^2.3.2",
"husky": "4.3.8",
"jest": "^26.6.3",
"lint-staged": "10.5.3",
"mock-aws-s3": "^4.0.1",
"prettier": "2.2.1",
"redis-mock": "^0.56.3",
"reflect-metadata": "^0.1.13",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4"
}
}