forked from carneyplusco/code-test-express
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 731 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 731 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
{
"name": "members_api",
"version": "1.0.0",
"description": "Express app to provide a basic API for code tests.",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "node_modules/.bin/mocha",
"migrate": "node_modules/.bin/knex migrate:latest",
"seed": "node_modules/.bin/knex seed:run"
},
"author": "Jesse Hixson <jesse.hixson@carney.co>",
"license": "MIT",
"dependencies": {
"bookshelf": "^0.10.3",
"cors": "^2.8.1",
"express": "^4.14.0",
"knex": "^0.12.6",
"sqlite3": "^3.1.8"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"faker": "^3.1.0",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"nodemon": "^1.11.0"
}
}