-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.85 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
{
"name": "expressjs-api-template",
"version": "1.0.0",
"engines": {
"node": ">=14.19.3"
},
"private": true,
"scripts": {
"build": "npx rimraf build && babel ./src --out-dir build",
"prod": "node ./build/bin/www",
"dev": "nodemon --exec babel-node ./src/bin/www",
"lint": "./node_modules/.bin/eslint ./src",
"pretty": "prettier --write '**/*.{js,json}' '!node_modules/**'",
"postpretty": "yarn lint --fix",
"test": "nyc --reporter=html --reporter=text --reporter=lcov mocha -r @babel/register"
},
"dependencies": {
"apicache": "^1.6.3",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "^2.6.9",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.1",
"http-errors": "~1.6.3",
"jsonwebtoken": "^9.0.0",
"morgan": "~1.9.1",
"mysql2": "^3.2.0",
"nodemailer": "^6.9.2",
"request": "^2.88.2",
"sequelize": "^6.30.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/node": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.21.0",
"@babel/runtime": "^7.21.0",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"sequelize-cli": "^6.6.2",
"sinon-chai": "^3.7.0",
"supertest": "^6.3.3"
}
}