-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.25 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "ex-modular",
"version": "0.1.0",
"description": "exModular - Express-based AP server with KNEX-based storage and user system",
"homepage": "https://github.com/goodcar-rent/ex-modular",
"main": "src/app.js",
"scripts": {
"start": "cross-env DEBUG='ex-modular:*' babel-node src/app.js",
"clean": "rimraf lib",
"test": "mocha ./test/**/*.js",
"cover": "nyc npm run test",
"lint": "eslint",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"Express",
"exModular",
"server",
"api",
"knex",
"sql",
"user"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "deksden",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"bcrypt": "^3.0.7",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-list-endpoints": "^4.0.1",
"express-validator": "^6.3.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.7",
"lodash": "^4.17.15",
"marked": "^0.8.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"sqlite3": "^4.1.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"babel-eslint": "^10.0.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-minify": "^0.5.1",
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"dirty-chai": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.0.6",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"rimraf": "^3.0.0",
"standard": "^14.3.1",
"supertest": "^4.0.2"
}
}