-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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": "quizit",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "vue-cli-service build --dist ./server/dist",
"lint": "vue-cli-service lint",
"db": "D:/db/bin/mongo.exe --config c:/db/mongod.cfg --install",
"dev": "vue-cli-service serve",
"server": "nodemon server/index.js -e js,vue",
"start": "node server/index.js",
"heroku:push": "heroku container:push web",
"heroku:release": "heroku container:release web",
"deploy": "npm-run-all build heroku:push heroku:release"
},
"dependencies": {
"@sendgrid/mail": "^7.3.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"core-js": "^3.6.5",
"detect-browser": "^5.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"mongoose": "^5.10.10",
"multer": "^1.4.2",
"os": "^0.1.1",
"puppeteer": "^5.4.1",
"uniqid": "^5.2.0",
"validator": "^13.1.17",
"vue": "^2.6.11",
"vue-router": "^3.2.0",
"vuex": "^3.4.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"sass": "^1.19.0",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.11"
}
}