-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·78 lines (78 loc) · 2.01 KB
/
package.json
File metadata and controls
executable file
·78 lines (78 loc) · 2.01 KB
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
77
78
{
"name": "node-starter",
"version": "1.0.0",
"description": "",
"author": "",
"scripts": {
"build": "babel src -d dist",
"start": "NODE_ENV=production knex migrate:latest && node dist",
"dev": "nodemon --exec babel-node src",
"lint": "eslint 'src/**/*.js'",
"prettier": "prettier --write 'src/**/*.js'",
"db:migrate": "knex migrate:latest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint",
"git add"
]
},
"engines": {
"node": "16.16"
},
"dependencies": {
"@babel/core": "7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "7.18.6",
"aws-sdk": "^2.1170.0",
"babel-plugin-module-resolver": "^4.1.0",
"bcrypt": "^5.0.1",
"bluebird": "^3.7.2",
"dotenv": "^16.0.1",
"eslint-plugin-n": "^15.2.4",
"faker": "^6.6.6",
"glob": "^8.0.3",
"husky": "^8.0.1",
"jsonwebtoken": "^8.5.1",
"knex": "^2.1.0",
"knex-cleaner": "^1.3.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-convert": "^2.0.0",
"koa-cors": "0.0.16",
"koa-json-logger": "^1.0.2",
"koa-logger": "^3.2.1",
"koa-passport": "^4.1.4",
"koa-router": "^11.0.1",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"objection": "^3.0.1",
"passport-local": "^1.0.0",
"pg": "^8.7.3",
"prettier": "^2.7.1"
},
"devDependencies": {
"@babel/cli": "7.18.6",
"@babel/node": "7.18.6",
"@babel/register": "7.18.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^2.0.19"
},
"license": "UNLICENSED"
}