-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"name": "blog_training",
"version": "1.0.0",
"main": "index.js",
"author": "Le Quoc Thinh <55595623+jadon2207@users.noreply.github.com>",
"license": "MIT",
"private": null,
"engines": {
"node": "15.14.0",
"npm": "7.7.6"
},
"scripts": {
"lint": "eslint ./",
"clean": "rm -rf dist && mkdir dist",
"build:babel": "babel ./src --out-dir dist --copy-files",
"build": "npm run clean && npm run build:babel",
"startlocal": "npx babel-node --presets @babel/preset-env src/index.js",
"start": "node dist/index.js",
"knex": "babel-node node_modules/knex/bin/cli.js"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.12"
},
"dependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/runtime": "^7.14.6",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase": "^8.8.0",
"google-auth-library": "^7.5.0",
"http-status": "^1.5.0",
"joi": "^17.4.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.7",
"method-override": "^3.0.0",
"mysql": "^2.18.1",
"pg": "^8.6.0",
"pug": "^3.0.2",
"winston": "^3.3.3"
}
}