-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
{
"name": "dnd5eapi-resources-api",
"version": "1.0.1",
"description": "API service to return D&D 5e resources",
"main": "dist/server.bundle.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"run:dev": "NODE_ENV=development NGROK=/usr/local/bin/ngrok webpack",
"start": "functions-framework --source=dist/server.bundle.js --target=app",
"deploy": "gcloud functions deploy app --source=dist/server.bundle.js --runtime nodejs14 --trigger-http",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@google-cloud/functions-framework": "^3.1.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.182",
"@types/node": "^18.6.5",
"axios": "^0.27.2",
"clean-webpack-plugin": "^4.0.0",
"dotenv-webpack": "^8.0.0",
"eslint": "^8.21.0",
"fkill": "^8.0.1",
"ngrok": "^4.3.1",
"nodemon": "^2.0.19",
"nodemon-webpack-plugin": "^4.8.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@typegoose/typegoose": "^9.11.0",
"5eutils": "^1.0.0",
"apollo-server-express": "^3.10.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"graphql-type-json": "^0.3.2",
"lodash": "^4.17.21",
"mongoose": "^6.5.2"
}
}