-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 2.64 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@ubclaunchpad/dot-com",
"version": "0.1.0",
"scripts": {
"vue-ui": "vue ui",
"serve": "vue-cli-service serve",
"serve-dist": "serve ./dist",
"build": "vue-cli-service build",
"postbuild": "npm run docs && npm run redirects",
"lint": "vue-cli-service lint --max-warnings=0",
"docs": "typedoc --options typedoc.js src/config.ts",
"redirects": "tsc ./tools/generateRedirects.ts --outDir bin && FILE='bin/src/config.js' ./tools/stripRequire.sh && node ./bin/tools/generateRedirects.js"
},
"dependencies": {
"@ubclaunchpad/vue-fathom": "~1.6.2",
"animate.css": "~3.7.2",
"bulma": "~0.8.2",
"clipboard-polyfill": "~2.8.6",
"core-js": "~3.6.5",
"fathom-client": "~3.0.0",
"smoothscroll-polyfill": "~0.4.4",
"tippy.js": "~6.2.0",
"vue": "~2.6.11",
"vue-lazyload": "~1.3.3",
"vue-router": "~3.1.6",
"vue-unicons": "~2.1.0",
"sass": "~1.26.5",
"sass-loader": "~8.0.2",
"typescript": "~3.8.3",
"vue-template-compiler": "~2.6.11"
},
"devDependencies": {
"@types/node": "~14.0.1",
"@typescript-eslint/eslint-plugin": "~2.30.0",
"@typescript-eslint/parser": "~2.30.0",
"@vue/cli-plugin-babel": "~4.3.1",
"@vue/cli-plugin-eslint": "~4.3.1",
"@vue/cli-plugin-typescript": "~4.3.1",
"@vue/cli-service": "~4.3.1",
"@vue/eslint-config-typescript": "~5.0.2",
"babel-eslint": "~10.1.0",
"eslint": "~6.8.0",
"eslint-plugin-vue": "~6.2.2",
"serve": "~11.3.0",
"typedoc": "~0.17.6"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/recommended",
"eslint:recommended",
"@vue/typescript",
"@vue/typescript/recommended"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {
"semi": "error",
"indent": [
"error",
2
],
"comma-dangle": [
"error",
"always-multiline"
],
"max-len": [
"error",
{
"code": 130
}
],
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
],
"quote-props": [
"error",
"as-needed"
],
"no-trailing-spaces": [
"error",
{
"ignoreComments": true
}
],
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/no-explicit-any": [
"off"
],
"@typescript-eslint/camelcase": [
"error",
{
"properties": "never"
}
]
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}