-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.28 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
68
69
70
71
72
73
74
{
"name": "animeloop-web-nuxt",
"version": "1.0.0",
"description": "Animeloop frontend, written from scratch using Nuxt.js",
"author": "OrcaXS Suen <[email protected]>",
"private": true,
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "3333"
}
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:css": "stylelint **/*.vue",
"styleguide": "vue-styleguidist server",
"styleguide:build": "vue-styleguidist build",
"precommit": "npm run lint",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-regular-svg-icons": "^5.7.2",
"@fortawesome/free-solid-svg-icons": "^5.7.2",
"@fortawesome/vue-fontawesome": "^0.1.5",
"@nuxtjs/google-analytics": "^2.1.0",
"@nuxtjs/pwa": "^3.0.0-beta.8",
"bulma": "^0.7.4",
"cookie": "^0.3.1",
"eslint-plugin-jsdoc": "^4.1.0",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.2.0",
"nuxt": "^2.4.3",
"v-click-outside": "^2.0.2",
"vue-i18n": "^8.8.2",
"vue-i18n-extensions": "^0.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"css-loader": "^2.1.0",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"glob-all": "^3.1.0",
"node-fetch": "^2.3.0",
"node-sass": "^4.11.0",
"path": "^0.12.7",
"postcss-bem-linter": "^3.2.0",
"postcss-import": "^12.0.1",
"postcss-import-resolver": "^1.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"postcss-reporter": "^6.0.1",
"postcss-url": "^8.0.0",
"purgecss-webpack-plugin": "^1.4.0",
"sass-loader": "^7.1.0",
"stylelint": "^9.10.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-selector-bem-pattern": "^2.0.0"
}
}