-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.08 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
{
"name": "mongodb-gcp-competition",
"version": "1.0.0",
"description": "London MongoDB Atlas on GCP competition - November 27 2019 - Google London",
"main": "dist/server.js",
"scripts": {
"start": "GOOGLE_APPLICATION_CREDENTIALS=./gcpcreds.json node dist/server.js",
"watch": "GOOGLE_APPLICATION_CREDENTIALS=./gcpcreds.json webpack --mode development --watch",
"build": "webpack --mode production",
"lint": "eslint",
"format": "prettier --write '**/*.{js,json,yml,md,hbs}' .babelrc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonespa/mongodb-gcp-competition.git"
},
"keywords": [
"MongoDB",
"MongoDB Atlas",
"GCP",
"Google London",
"Google Cloud Platform",
"Google Cloud API",
"Google Cloud Natural Language API"
],
"author": {
"name": "Simone Spaccarotella",
"email": "spa.simone@gmail.com",
"url": "https://www.linkedin.com/in/simonespaccarotella"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/simonespa/mongodb-gcp-competition/issues"
},
"homepage": "https://github.com/simonespa/mongodb-gcp-competition#readme",
"dependencies": {
"@google-cloud/language": "^5.1.0",
"@google-cloud/text-to-speech": "^4.0.4",
"express": "^4.18.2",
"express-handlebars": "^6.0.6",
"mongodb": "^4.12.1"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/node": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.26.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"nodemon-webpack-plugin": "^4.8.1",
"prettier": "^2.8.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"!(*.js)": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}