forked from cs4241-21a/a3-persistence
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 855 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 855 Bytes
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
{
"//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"
},
"dependencies": {
"cookie-session": "^1.4.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongodb": "^4.1.2",
"normalize.css": "^8.0.1",
"reflect-metadata": "^0.1.13",
"typeorm": "0.2.28"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
],
"resolutions": {
"typeorm": "0.2.28"
}
}