-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "commerce",
"version": "0.0.0",
"description": "commerce",
"main": "index.js",
"scripts": {
"start": "npx -p @babel/core -p @babel/node babel-node --presets @babel/preset-env ./src/index.js",
"dev": "nodemon --exec babel-node ./src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lumnisoft/cmc-commerce.git"
},
"author": "Lumnisoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lumnisoft/cmc-commerce/issues"
},
"homepage": "https://github.com/Lumnisoft/cmc-commerce#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dot-env": "0.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.18",
"morgan": "^1.10.0",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.1.0",
"yup": "^0.26.7"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-private-methods": "^7.10.1",
"@babel/plugin-transform-flow-strip-types": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"chalk": "^4.1.0",
"nodemon": "^2.0.4"
}
}