-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 989 Bytes
/
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
{
"name": "google-maps-server",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Aakash Shah <[email protected]>",
"license": "MIT",
"engines": {
"node": "16.x"
},
"scripts": {
"build-dist": "yarn tsc --outDir dist",
"build": "yarn clean && yarn build-dist && netlify-lambda build dist && cp _redirects dist/",
"clean": "rimraf dist",
"netlify-dev": "yarn build && netlify dev",
"start-dev": "nodemon src/server-local.ts",
"start": "nodemon dist/server-local"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.1.16",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"serverless-http": "^2.7.0"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/morgan": "^1.9.2",
"netlify-cli": "^3.28.1",
"netlify-lambda": "^2.0.6",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}