-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.17 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
{
"name": "my-gridsome-site",
"private": true,
"scripts": {
"build": "npm run copy-env-production && gridsome build",
"develop": "npm run copy-env-development && gridsome develop",
"explore": "npm run copy-env-development gridsome explore",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore . --fix",
"deploy": "npm run build && aws s3 cp dist/ s3://justadreamer.ru/ --recursive",
"copy-env-development": "cp environments/.env.development .env",
"copy-env-production": "cp environments/.env.production .env"
},
"dependencies": {
"axios": "^0.19.2",
"axios-auth-refresh": "^2.2.7",
"device-detector-js": "^2.2.1",
"gridsome": "0.7.21",
"js-cookie": "^2.2.1",
"vue-password-strength-meter": "^1.7.2",
"vuelidate": "^0.7.5",
"vuex": "^3.4.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.3.0",
"eslint-plugin-gridsome": "^1.4.12",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"gridsome-plugin-tailwindcss": "3.0.1",
"prettier": "^2.0.5",
"vue-eslint-parser": "^7.1.0"
}
}