-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.52 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
{
"name": "express-typescript-starter",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node -r dotenv/config ./dist/bin/www",
"build": "babel src --extensions .ts --out-dir dist",
"build:dev": "npm run build -- --watch",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts .",
"check-types": "tsc",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "npm-run-all --parallel check-types check-format lint build",
"nodemon": "nodemon -r dotenv/config ./dist/bin/www.js",
"dev": "npm-run-all --parallel build:dev nodemon",
"set-knex-workdir": "npx knex --cwd src/database",
"migration:create": "npm run set-knex-workdir -- migrate:make",
"migration:latest": "npm run set-knex-workdir -- migrate:latest",
"migration:up": "npm run set-knex-workdir -- migrate:up",
"migration:rollback": "npm run set-knex-workdir -- migrate:rollback",
"migration:down": "npm run set-knex-workdir -- migrate:down",
"migration:currentVersion": "npm run set-knex-workdir -- migrate:currentVersion",
"migration:list": "npm run set-knex-workdir -- migrate:list"
},
"dependencies": {
"apollo-datasource-rest": "^0.7.0",
"apollo-server-express": "^2.14.2",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-errors": "^1.7.3",
"knex": "^0.20.10",
"morgan": "^1.9.1",
"node-fetch": "^3.1.1",
"objection": "^2.2.16",
"pg": "^7.18.2",
"pug": "^2.0.4",
"redis": "^3.1.1",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@babel/register": "^7.8.3",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/graphql": "^14.5.0",
"@types/http-errors": "^1.6.3",
"@types/morgan": "^1.7.37",
"@types/node": "^13.7.4",
"@types/node-fetch": "^2.5.4",
"@types/redis": "^2.8.16",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"husky": "^4.2.3",
"lint-staged": "^9.5.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"typescript": "^3.8.2"
}
}