-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.5 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "express-knex-typescript-template",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"knex": "node -r dotenv/config --unhandled-rejections=strict node_modules/.bin/knex",
"coverage": "nyc npm run test",
"test": "npm run test:prepare && cross-env NODE_ENV=test mocha 'tests/**/*.ts'",
"test:prepare": "npm run build && npm run migrate:down:all && npm run migrate && cross-env NODE_ENV=test npm run seed",
"build": "rimraf build && tsc",
"start": "node -r dotenv/config --unhandled-rejections=strict --enable-source-maps .",
"dev": "nodemon",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"migrate": "npm run knex migrate:latest",
"migrate:up": "npm run knex migrate:up",
"migrate:down": "npm run knex migrate:down",
"migrate:down:all": "npm run knex migrate:rollback --all",
"seed": "npm run knex seed:run",
"setup": "node --unhandled-rejections=strict scripts/setup.js",
"gen:secret": "node --unhandled-rejections=strict scripts/gensecret.js"
},
"keywords": [],
"private": true,
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.2.14",
"@types/chai-spies": "^1.0.3",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.0.4",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.7",
"@types/nodemailer": "^6.4.1",
"@types/pg": "^7.14.6",
"@types/pug": "^2.0.4",
"@types/superagent": "^4.1.10",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chai-spies": "^1.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.2.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.4.2"
},
"dependencies": {
"@cdellacqua/express-async-wrapper": "^1.0.2",
"@cdellacqua/knex-transact": "^3.0.0",
"@cdellacqua/serializable-error": "^1.1.0",
"bcryptjs": "^2.4.3",
"bignumber.js": "^9.0.1",
"cors": "^2.8.5",
"crypto-extra": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.4",
"morgan": "^1.10.0",
"nodemailer": "^6.6.0",
"pg": "^8.5.0",
"pg-query-stream": "^4.2.1",
"pug": "^3.0.0",
"winston": "^3.3.3"
}
}