-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 924 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
{
"//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",
"local": "node localStart.js"
},
"dependencies": {
"axios": "0.21.2",
"eris": "^0.13.3",
"express": "^4.18.2",
"firebase-admin": "^11.3.0",
"html-entities": "^1.3.1",
"pretty-ms": "^7.0.0",
"serve-index": "^1.9.1",
"ws": "^7.4.6"
},
"engines": {
"node": "12.x"
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
],
"devDependencies": {
"chai": "^4.2.0",
"dotenv": "^8.2.0"
}
}