-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 798 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
{
"name": "cc-crud-api",
"version": "1.0.0",
"description": "CRUD api service created during my time as a student at Code Chrysalis.",
"main": "index.js",
"repository": "https://github.com/djrcoder/cc-crud-api.git",
"author": "djrcoder djrcode@gmail.com",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"install": "^0.13.0",
"knex": "^0.20.8",
"mocha": "^7.0.0",
"moment": "^2.24.0",
"nodemon": "^2.0.2",
"path": "^0.12.7",
"pg": "^7.17.1",
"serve-favicon": "^2.5.0",
"supertest": "^4.0.2",
"yarn": "^1.21.1"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "mocha tests/test.js"
}
}