-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.53 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
69
70
71
72
73
74
75
76
77
{
"name": "hackcamp-2020",
"version": "1.0.0",
"description": "At HackCamp, we welcome hundreds of tech newbies to learn new skills, build cool projects, and share new experiences! We are part of an international celebration of diversity, accessibility, and inclusivity for newcomers in the Greater Vancouver hackathon and tech community.",
"author": "nwPlus Dev Team",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"test": "jest",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"generate:gh-pages": "cross-env DEPLOY_ENV=GH_PAGES nuxt generate",
"generate:prod": "cross-env DEPLOY_ENV=PRODUCTION nuxt generate",
"mobile": "cross-env NUXT_HOST=0.0.0.0 yarn dev",
"dev:prod": "cross-env DEPLOY_ENV=PRODUCTION nuxt"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@nuxtjs/axios": "^5.5.4",
"@nuxtjs/dotenv": "^1.3.0",
"@nuxtjs/google-analytics": "^2.2.0",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/svg-sprite": "^0.2.1",
"@nuxtjs/toast": "^3.3.1",
"cheerio": "^1.0.0-rc.3",
"cross-env": "^7.0.2",
"firebase": "^7.7.0",
"jquery": "^3.4.0",
"lodash.orderby": "^4.6.0",
"nuxt": "^2.11.0",
"nuxt-buefy": "^0.3.10",
"nuxt-fontawesome": "^0.4.0",
"popper.js": "1.14.7",
"vue-clickaway": "^2.2.2",
"vue-data-proxy": "^1.0.4",
"vue-kinesis": "^1.0.4",
"vue-scrollto": "^2.15.0",
"vue-snowf": "^0.0.2",
"vuejs-auto-complete": "^0.9.0",
"vuelidate": "^0.7.4",
"vuex-persist": "^2.1.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"core-js": "2.6.5",
"eslint": "^5.15.1",
"eslint-config-standard": ">=12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": ">=2.16.0",
"eslint-plugin-jest": ">=22.3.0",
"eslint-plugin-node": ">=8.0.1",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-promise": ">=4.0.1",
"eslint-plugin-standard": ">=4.0.0",
"eslint-plugin-vue": "^5.2.2",
"husky": "^4.2.5",
"jest": "^24.1.0",
"node-sass": "^4.12.0",
"nodemon": "^1.18.9",
"sass-loader": "^7.3.1",
"vue-jest": "^3.0.3"
}
}