forked from ably-labs/LED-Matrix-Jumper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "hello-express",
"version": "0.0.1",
"description": "A simple Node app built on Express, instantly up and running.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"devserver": "nodemon --inspect server.js",
"debug": "node --inspect server.js",
"test": "jest"
},
"dependencies": {
"@azure/identity": "^1.0.0",
"@azure/storage-blob": "^12.0.0",
"axios": "^0.19.0",
"azure-storage": "^2.10.3",
"azure-storage-legacy": "^0.11.1",
"body-parser": "latest",
"express": "^4.16.4",
"form-data": "^3.0.0",
"jimp": "^0.8.5",
"uuid": "^3.3.3"
},
"engines": {
"node": "12.x"
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
],
"devDependencies": {
"jest": "^24.9.0",
"jest-each": "^24.9.0",
"nodemon": "^1.19.4",
"supertest": "^4.0.2"
}
}