-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 972 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
37
38
39
{
"name": "appengine-hello-world",
"description": "Simple Hello World Node.js sample for Google App Engine Standard Environment.",
"version": "0.0.2",
"type": "module",
"private": true,
"license": "Apache-2.0",
"author": "Google Inc.",
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"engines": {
"node": ">=14.0.0",
"angular/cli": "10.2.5"
},
"scripts": {
"start": "node app.js",
"test": "mocha --exit test/*.test.js"
},
"dependencies": {
"@angular/material": "^12.0.4",
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"jquery": "^3.6.0",
"latlon-geohash": "^2.0.0",
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"@types/express": "^4.16.1",
"mocha": "^8.1.3",
"nodemon": "^2.0.7",
"supertest": "^6.0.0",
"tslint": "^5.12.1",
"typescript": "^3.9.9"
}
}