-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.88 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
{
"name": "radar",
"version": "1.0.0",
"description": "The TechLabs semester radar shows all the important semester information at a glance",
"author": "Felix Seidel",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"test": "jest",
"generate-links": "scripts/generate-links.mjs"
},
"lint-staged": {
"*.{js,vue}": "npm run lint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@creativebulma/bulma-tooltip": "^1.0.2",
"@nuxtjs/bulma": "^1.2.1",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/onesignal": "^3.0.0-beta.16",
"@nuxtjs/pwa": "^3.0.0-0",
"@nuxtjs/style-resources": "^1.0.0",
"@typeform/embed": "^0.16.0",
"bulma-checkradio": "^1.1.1",
"date-fns": "^2.12.0",
"hover.css": "^2.3.2",
"markdown-it": "^10.0.0",
"nuxt": "^2.0.0",
"vuex-persist": "^2.2.0"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"@nuxtjs/fontawesome": "^1.1.2",
"@nuxtjs/stylelint-module": "^3.1.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.0.0",
"jest": "^24.1.0",
"lint-staged": "^10.0.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"sass-loader": "^8.0.2",
"stylelint": "^10.1.0",
"vue-jest": "^4.0.0-0",
"yaml-loader": "^0.6.0"
}
}