-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.09 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
{
"name": "shop-server",
"author": "Yuliia Bozhek",
"version": "1.0.0",
"description": "online shop server",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Juli-Bk/shop-server.git"
},
"scripts": {
"start": "if-env NODE_ENV=production ?? npm run start:prod || npm run start:dev",
"start:dev": "npm run eslint && nodemon",
"start:prod": "nodemon",
"start:debug": "npm run eslint && nodemon --inspect",
"eslint": "eslint src/**/*.js postman/*.js .",
"eslint-fix": "eslint --fix src/**/*.js .",
"find-outdated": "npm outdated",
"re-install": "rm -rf node_modules package-lock.json && npm install",
"integration-tests": "rimraf postman/results && babel-node postman/tests.js",
"ci": "server-test :3000 integration-tests"
},
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"aws-sdk": "^2.826.0",
"axios": "^0.21.1",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"if-env": "^1.0.4",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"moment": "^2.29.1",
"mongoose": "^5.11.11",
"mongoose-autopopulate": "^0.14.0",
"mongoose-id-validator": "^0.6.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"newman": "^5.2.3",
"newman-reporter-htmlextra": "^1.21.0",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"serve-favicon": "^2.5.0",
"unique-random": "^2.1.0",
"validator": "^13.5.2",
"webp-converter": "^2.3.1"
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"start-server-and-test": "^1.12.6"
},
"engines": {
"node": ">=8.10.0"
}
}