-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 749 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 749 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
{
"name": "palatte-picker-api",
"version": "1.0.0",
"description": "An API for choosing colors.",
"main": "server.js",
"scripts": {
"start": "server.js",
"start:nodemon": "server.js",
"test": "jest --forceExit",
"migrate": "knex migrate:latest --env=test",
"seed": "knex seed:run --env=test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-jest": "^24.8.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"eslint": "^5.16.0",
"express": "^4.16.4",
"jest": "^24.8.0",
"knex": "^0.16.5",
"lodash": "^4.17.15",
"pg": "^7.10.0"
},
"devDependencies": {
"supertest": "^4.0.2"
}
}