-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
121 lines (121 loc) · 3.13 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "amida-api-boilerplate",
"version": "1.0.3",
"description": "A Boilerplate application for building REST APIs",
"author": "Alan Thompson <[email protected]>",
"license": "Apache-2.0",
"main": "index.js",
"private": false,
"engines": {
"node": ">= 14.21.1",
"npm": ">= 6.12.0",
"yarn": ">= 1.17.3"
},
"scripts": {
"start": "gulp serve",
"start:debug": "cross-env DEBUG=amida-api-boilerplate:* yarn start",
"build": "gulp",
"copy": "gulp copy",
"babel": "gulp babel",
"lint": "esw *.js server config --color",
"lint:watch": "yarn lint -- --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "[email protected]:amida-tech/api-boilerplate.git"
},
"keywords": [
"express",
"node",
"node.js",
"postgres",
"postgresql",
"es6",
"jest",
"REST",
"API",
"boilerplate"
],
"jest": {
"automock": false,
"bail": false,
"verbose": true,
"setupFiles": [
"./jest-setup.js"
],
"testMatch": [
"**/Tests/**/*.js",
"**/?(*.)(spec|test|integration).js?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/coverage/",
"/dist/"
],
"testEnvironment": "node"
},
"dependencies": {
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"del": "~7.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-validation": "^4.1.0",
"express-winston": "^4.2.0",
"gulp": "4.0.2",
"gulp-load-plugins": "^2.0.8",
"helmet": "^6.1.5",
"http-status": "^1.6.2",
"jsonwebtoken": "9.0.0",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.31.0",
"supertest": "^6.3.3",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-bind": "^7.18.9",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.21.0",
"babel-loader": "^9.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-watch": "^8.0.0",
"gulp-babel": "8.0.0",
"gulp-newer": "^1.4.0",
"gulp-nodemon": "^2.5.0",
"gulp-sourcemaps": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^21.1.1",
"validate-commit-msg": "^2.6.1",
"webpack": "5.79.0"
},
"husky": {
"hooks": {
"pre-commit": "esw *.js server config --color && jest"
}
}
}