-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.97 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
{
"name": "homepage-nuxtjs",
"version": "0.5.2-dev",
"description": "KNIT Homepage - SPA, SSR, Nuxtjs",
"homepage": "http://knit.pk.edu.pl",
"author": {
"name": "KNIT Web Team",
"url": "https://github.com/orgs/knit-pk/teams/knit-web-team/members"
},
"license": "MIT",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"commit": "git-cz",
"precommit": "yarn lint && yarn lint:scss",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:scss": "stylelint \"**/*.(vue)\" --syntax scss",
"test": "jest src/test",
"format-on-save": "watch \"npm run lint -- --fix\" -d -p \"/node_modules/\""
},
"dependencies": {
"@nuxtjs/axios": "^5.3.2",
"@nuxtjs/google-analytics": "^2.0.2",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0-rc.11",
"detect-it": "^3.0.5",
"lodash": "^4.17.11",
"node-sass": "^4.9.3",
"normalize.css": "^8.0.0",
"nuxt": "^2.0.0",
"qs": "^6.5.2",
"sass-loader": "^7.1.0",
"vue-config-manager": "^0.2.2",
"vue-markdown": "^2.2.4",
"vue-prevent-parent-scroll": "^1.0.5",
"vue2-scrollbar": "0.0.3"
},
"devDependencies": {
"@mapbox/stylelint-processor-arbitrary-tags": "^0.2.0",
"babel-eslint": "^10.0.0",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^6.0.0",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^4.7.1",
"jest": "^23.6.0",
"stylelint": "^9.5.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-webpack-plugin": "^0.10.5",
"watch": "^1.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}