-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 861 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
{
"name": "cultural-reviews",
"version": "1.0.0",
"description": "My reviews of art, films, books, music and all other cultural curiosities.",
"main": "index.js",
"scripts": {
"start": "node ./src/server/index.js -p $PORT",
"dev": "nodemon ./src/server/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidtrussler/cultural-reviews.git"
},
"keywords": [],
"author": "David Trussler",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidtrussler/cultural-reviews/issues"
},
"homepage": "https://github.com/davidtrussler/cultural-reviews#readme",
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "^2.0.6"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pg": "^8.5.1"
},
"engines": {
"node": ">=16.0.0"
}
}