-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 KB
/
package.json
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
43
44
45
46
47
48
49
50
{
"name": "express-knex-postgres-boilerplate",
"version": "1.0.0",
"description": "Boilerplate code for quick setup for CRUD applications using express/knex/postgres",
"main": "index.js",
"scripts": {
"test": "DB_ENV=testing jest --watch --verbose",
"server": "nodemon index.js",
"start": "node index.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raberin/express-knex-postgres-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/raberin/express-knex-postgres-boilerplate/issues"
},
"homepage": "https://github.com/raberin/express-knex-postgres-boilerplate#readme",
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"easy-soap-request": "^4.7.0",
"eslint": "^8.13.0",
"express": "^4.17.3",
"http-status": "^1.5.1",
"knex": "^1.0.7",
"morgan": "^1.9.1",
"pg": "^8.7.3"
},
"devDependencies": {
"cross-env": "^6.0.3",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1"
}
}