-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 897 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 897 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
{
"name": "blog-vs-mcenroe",
"version": "1.0.0",
"description": "Full-Stack web application built using React, Redux, Express, and SQLite.",
"main": "index.js",
"scripts": {
"start": "nodemon",
"test": "jest --watch --verbose"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szincone/blog-vs-mcenroe.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/szincone/blog-vs-mcenroe/issues"
},
"homepage": "https://github.com/szincone/blog-vs-mcenroe",
"dependencies": {
"cors": "^2.8.4",
"dotenv": "^6.1.0",
"express": "^4.16.3",
"helmet": "^3.13.0",
"knex": "^0.15.2",
"morgan": "^1.9.0",
"sqlite3": "^4.0.2"
},
"devDependencies": {
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"supertest": "^3.3.0"
}
}