-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.89 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
{
"name": "openfact",
"version": "0.0.1",
"main": "src/index.ts",
"repository": "git@bitbucket.org:tonguetech/openfact.git",
"author": "Dickson Chow <dicksonchow2007@gmail.com>",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/graphql": "^14.0.5",
"@types/js-yaml": "^3.12.0",
"@types/jsonwebtoken": "^8.3.0",
"@types/lodash": "^4.14.121",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.5.12",
"@types/morgan": "^1.7.35",
"@types/mustache": "^0.8.32",
"@types/node": "^11.11.6",
"@types/nodemailer": "^4.6.6",
"@types/passport": "^1.0.0",
"@types/passport-facebook-token": "^0.4.33",
"@types/passport-local": "^1.0.33",
"@types/stripe": "^6.25.6",
"@types/swagger-ui-express": "^4.1.3",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.6.2"
},
"scripts": {
"dev": "NODE_ENV=development nodemon",
"build": "rm -rf dist && tsc --skipLibCheck",
"start": "node dist/index.js"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.1.16",
"axios": ">=0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"graphql": "^14.1.1",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.3.2",
"js-yaml": "^3.12.2",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mongoose": "^5.6.8",
"morgan": "^1.9.1",
"mustache": "^3.0.1",
"nodemailer": ">=6.6.3",
"nodemon": "^2.0.4",
"passport": "^0.4.0",
"passport-facebook-token": "^3.3.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"stripe": "^6.28.0",
"swagger-ui-dist": "^3.22.1",
"swagger-ui-express": "^4.1.6",
"ts-node": "^8.10.2",
"uuid": ">=8.3.2",
"winston": "^3.2.1"
}
}