-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1018 Bytes
/
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
{
"name": "jdl-node-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "nodemon --exec mocha -R min",
"dev": "cross-env NODE_ENV=development nodemon -e js -r dotenv/config src/index.js",
"start": "cross-env NODE_ENV=production node src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"express-list-endpoints": "^5.0.0",
"express-validator": "^6.11.1",
"fs-extra": "^10.0.0",
"kill-port": "^1.6.1",
"mongoose": "^5.12.7",
"multer": "^1.4.2",
"pg": "^8.6.0",
"prettier": "^2.2.1",
"query-to-mongo": "^0.10.1",
"sequelize": "^6.6.2",
"sequelize-cockroachdb": "^6.0.0-beta.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"dotenv": "^8.5.1",
"mocha": "^8.3.2",
"nodemon": "^2.0.7"
}
}