-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.59 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.59 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
{
"name": "nodejs-starter-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "babel-node src/index.js",
"babel-node": "babel-node --presets='@babel/preset-env'",
"dev": "nodemon --exec babel-node src/index.js",
"test": "mocha test --exit --timeout=150000"
},
"keywords": [],
"author": "Mary",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/register": "^7.17.0",
"@babel/runtime": "^7.17.2",
"app-root-path": "^3.0.0",
"axios": "^0.25.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"chai": "^4.3.4",
"cors": "^2.8.5",
"cron": "^1.8.2",
"cross-env": "^7.0.3",
"dayjs": "^1.10.7",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"dotenv": "^11.0.0",
"esm": "^3.2.25",
"express": "^4.17.2",
"fetch": "^1.1.0",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"node-cron": "^3.0.0",
"node-fetch": "^3.2.0",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.14",
"path": "^0.12.7",
"pg-promise": "^10.11.1",
"pug": "^3.0.2",
"redis": "^4.0.2",
"supertest": "^6.2.0",
"winston": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.16.7",
"@babel/node": "^7.16.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.8",
"@babel/register": "^7.17.0",
"@babel/runtime": "^7.17.2",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4"
}
}