-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "store-node",
"version": "1.0.0",
"description": "A Node.js server using MongoDB",
"main": "app.js",
"author": "meishadevs <meishadevs@gmail.com>",
"license": "GPL",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --harmony app.js",
"check": "cross-env NODE_ENV=production nodemon --harmony app.js",
"lint": "eslint **/*.js",
"lint-html": "eslint **/*.js -f html -o ./reports/lint-results.html",
"lint-fix": "eslint --fix **/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "pm2 deploy production"
},
"repository": {
"type": "git",
"url": "https://github.com/meishadevs/store-node"
},
"dependencies": {
"chalk": "^2.3.0",
"config-lite": "^3.0.0",
"connect-history-api-fallback": "^1.3.0",
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.3",
"cos-nodejs-sdk-v5": "^2.11.16",
"cross-env": "^5.0.0",
"express": "^4.15.2",
"express-jwt": "^7.7.7",
"express-session": "^1.15.2",
"formidable": "^1.1.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.9.1",
"mongoose": "^6.5.4",
"multer": "^1.4.5-lts.1",
"pm2": "^2.8.0",
"time-formater": "1.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"babel-eslint": "^10.1.0",
"eslint": "^8.23.1",
"nodemon": "^1.18.6"
}
}