-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 962 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 962 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
37
38
39
40
41
42
{
"name": "todoapp",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"start:dev": "nodemon ./bin/server.js",
"postgres": "sudo service postgresql",
"format": "prettier --write '*' '*/*' "
},
"keywords": [],
"author": "Dusk Kitil",
"license": "ISC",
"devDependencies": {
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.9.0",
"sqlite3": "^5.0.2",
"twilio": "^3.71.1"
},
"bin": {
"todoapp": "bin/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duskkitil/todoApp.git"
},
"bugs": {
"url": "https://github.com/duskkitil/todoApp/issues"
},
"homepage": "https://github.com/duskkitil/todoApp#readme",
"description": ""
}