-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "create-mevn-app",
"version": "1.0.0",
"description": "Boilerplate for Mongo, Vue, Express, Node apps.",
"main": "server/index.js",
"scripts": {
"setup": "npm i -D && cd client && npm i -D",
"dev": "concurrently \"nodemon server\" \"nodemon client\"",
"start": "node server",
"build": "node bin",
"server": "nodemon server",
"client": "node bin",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devenvmgr/create-mevn-app"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/devenvmgr/create-mevn-app/issues"
},
"homepage": "https://github.com/devenvmgr/create-mevn-app#readme",
"dependencies": {
"animate.css": "^4.1.1",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"bootswatch": "^5.3.1",
"concurrently": "^8.2.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"mongodb": "^6.0.0",
"mongoose": "^7.5.0",
"morgan": "^1.10.0",
"validator": "^13.11.0"
},
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3"
}
}