-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 KB
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
{
"name": "nodeblog",
"version": "1.0.0",
"description": "blog using node and mongodb",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "webpack --config webpack.config.js --mode development --watch",
"build": "webpack --config webpack.config.js --mode production",
"start": "npm run build && node app.js",
"lint": "eslint --fix --ext .jsx,.js"
},
"dependencies": {
"applicationinsights": "1.8.10",
"bcrypt-nodejs": "latest",
"body-parser": "*",
"connect-flash": "0.1.1",
"cookie-parser": "1.4.3",
"dotenv": "8.2.0",
"ejs": "2.5.7",
"express": "*",
"express-session": "1.15.6",
"express-validator": "4.2.1",
"mongoose": "5.9.9",
"node-fetch": "2.6.0",
"passport": "0.4.0",
"passport-local": "1.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"webpack": "4.42.1",
"webpack-cli": "3.1.2"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/node": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"babel-loader": "8.0.2",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"jest": "23.6.0",
"nodemon": "2.0.3",
"prettier": "2.2.1",
"style-loader": "0.23.0",
"webpack-dev-server": "3.1.11"
},
"author": "shalindra shrestha",
"license": "ISC",
"engines": {
"node": "14.16.0"
}
}