-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.21 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "apiboy",
"description": "ApiBoy Frontend",
"author": "Andres Barrios, Deibys Soca",
"version": "1.0.0",
"scripts": {
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"dev": "npm run node:check && webpack-dev-server --config build/webpack.config.dev.js",
"production": "npm run node:check && npm run clean && npm run build:production && npm run deploy:production",
"build:production": "webpack --config build/webpack.config.production.js",
"deploy:production": "export $(cat .team/production/env) && netlify deploy --dir=dist --prod",
"node:check": "check-node-version --node '>= 12.13.0'",
"clean": "rm -rf dist"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"axios": "^0.21.2",
"base-64": "^0.1.0",
"buefy": "^0.8.13",
"buffer": "^5.5.0",
"firebase": "^7.13.0",
"http-status-codes": "^1.4.0",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.21",
"murmurhash-js": "^1.0.0",
"nprogress": "^0.2.0",
"object-hash": "^2.0.3",
"utf8": "^3.0.0",
"uuid": "^7.0.2",
"v-clipboard": "^2.2.2",
"vue": "^2.6.11",
"vue-gravatar": "^1.3.1",
"vue-router": "^3.1.6",
"vuex": "^3.1.3",
"vuex-persist": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"check-node-version": "^4.0.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"eslint-plugin-vue-libs": "^4.0.0",
"html-webpack-plugin": "^4.0.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"vue-loader": "^15.9.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}