-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.99 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "auth-app",
"version": "1.0.0",
"description": "my funkadelic project",
"private": true,
"scripts": {
"dev": "nodemon --exec babel-node server/index.js",
"build:server": "babel server/ --out-dir dist/ --copy-files",
"prettier": "prettier --write './**/*.{js,vue}'",
"build": "npm run build:client && npm run build:server",
"build:client": "webpack --production",
"start": "node dist/index.js",
"test": "jest",
"test:e2e": "cypress open"
},
"dependencies": {
"@fullstackjs/mail": "^1.0.7",
"axios": "^0.18.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"formik": "^1.5.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.4.19",
"nodemailer": "^5.1.1",
"randomstring": "^1.1.5",
"tailwindcss": "^0.7.4",
"vee-validate": "^2.2.0",
"vue": "^2.6.10",
"vue-router": "^3.0.2",
"vuex": "^3.1.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"css-loader": "^2.1.1",
"cypress": "^3.2.0",
"glob-all": "^3.1.0",
"jest": "^24.7.1",
"mini-css-extract-plugin": "^0.5.0",
"nodemon": "^1.18.10",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss": "^7.0.14",
"postcss-loader": "^3.0.0",
"prettier": "^1.16.4",
"purgecss-webpack-plugin": "^1.4.0",
"supertest": "^4.0.2",
"uglifyjs-webpack-plugin": "^2.1.2",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.29.0",
"webpack-cli": "^3.3.0",
"webpack-dev-middleware": "^3.6.1",
"webpack-hot-middleware": "^2.24.3"
}
}