-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "tinyhouse-v1-server",
"version": "0.1.0",
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.3.7",
"@graphql-tools/utils": "^8.6.1",
"@types/mongodb": "^4.0.7",
"apollo-server-express": "^3.6.0",
"body-parser": "^1.19.1",
"cloudinary": "^1.28.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"crypto": "^1.0.1",
"express": "^4.17.2",
"googleapis": "^92.0.0",
"graphql": "^16.2.0",
"lodash.merge": "^4.6.2",
"mongodb": "^4.2.2",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"stripe": "^8.201.0",
"ts-node": "^10.4.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/graphql": "^14.5.0",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^18.14.2",
"@types/stripe": "^8.0.417",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"dotenv": "^10.0.0",
"eslint": "^8.35.0",
"nodemon": "^2.0.15",
"typescript": "^4.5.4"
},
"scripts": {
"start": "nodemon -r dotenv/config src/index.ts",
"build": "tsc -p ./",
"seed": "ts-node src/temp/seed.ts",
"clear": "ts-node src/temp/clear.ts"
},
"engines": {
"node": "14.0.0",
"npm": "6.9.0"
}
}