-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
executable file
·58 lines (58 loc) · 1.69 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
{
"name": "dummy-products-api",
"version": "1.0.0",
"main": "index.js",
"author": "Kevin Roi Basina",
"license": "MIT",
"scripts": {
"start": "node src/index.js",
"server": "clear && yarn run docs:build && nodemon src/index.js",
"deploy": "yarn run docs:build && git push -u heroku master",
"docs:sass": "clear && node-sass ./docs/assets/sass/_main.scss ./docs/assets/css/main.css",
"docs:build": "clear && yarn run docs:sass && webpack"
},
"dependencies": {
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.3",
"faker": "^5.1.0",
"helmet": "^4.2.0",
"hpp": "^0.2.3",
"mongoose": "^5.11.4",
"morgan": "^1.10.0",
"nanoid": "^3.1.20",
"nodemailer": "^6.4.17",
"validator": "^13.5.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.8.1",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^5.0.0",
"nodemon": "^2.0.6",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"regenerator-runtime": "^0.13.7",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.1"
},
"engines": {
"node": "v14.15.1"
}
}