-
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.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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": "mevn",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec babel-node server/index",
"prettier": "prettier --write '**/*.js'",
"build:client": "webpack --mode-production",
"build:server": "babel server/ --out-dir dist/ --copy-files",
"build": "npm run build:client && npm run build:server"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fullstackjs/mail": "^1.0.7",
"axios": "^0.20.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.25",
"randomstring": "^1.1.5",
"vee-validate": "^3.3.9",
"vue-router": "^3.4.1",
"vuex": "^3.5.1",
"webpack-hot-middleware": "^2.25.0",
"yup": "^0.29.3"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"css-loader": "^4.2.0",
"i": "^0.3.6",
"mini-css-extract-plugin": "^0.9.0",
"nodemon": "^2.0.4",
"postcss": "^7.0.32",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"tailwindcss": "^1.6.2",
"vue": "^2.6.11",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2"
}
}