-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.84 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": "appventure-website",
"private": true,
"scripts": {
"build": "gridsome build",
"develop": "gridsome develop",
"explore": "gridsome explore",
"lint:check": "eslint --ext .ts,.vue ./src",
"lint:fix": "yarn lint:check --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(vue|ts)": "yarn lint:check"
},
"dependencies": {
"@gridsome/transformer-yaml": "^0.2.1",
"@types/vue-feather-icons": "^5.0.2",
"fuse.js": "^6.4.6",
"gridsome": "^0.7.23",
"gridsome-plugin-rss": "^1.4.0",
"gridsome-remark-katex": "^0.1.1",
"infinite-loading": "^0.2.8",
"lodash": "^4.17.21",
"remark-attr": "^0.11.1",
"remark-parse": "^6.0.0",
"sass": "^1.35.2",
"sweetalert2": "^11.3.0",
"vue": "^2.6.10",
"vue-feather-icons": "^5.1.0",
"vue-infinite-loading": "^2.4.5",
"vue-multiselect": "^2.1.6",
"vue-property-decorator": "^8.2.0",
"webpack": "^4.29.3"
},
"devDependencies": {
"@gridsome/remark-prismjs": "^0.5.0",
"@gridsome/source-filesystem": "^0.6.2",
"@gridsome/transformer-remark": "^0.6.4",
"@types/fuse": "^2.6.0",
"@types/lodash": "^4.14.177",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^7.0.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"eslint-plugin-vue": "^9.0.0",
"front-matter": "^4.0.2",
"gridsome-plugin-typescript": "^0.4.0",
"husky": "^8.0.0",
"js-yaml": "^3.13.1",
"lint-staged": "^14.0.0",
"marked": "^9.0.0",
"rss": "^1.2.2",
"sass-loader": "^10.0.0",
"style-resources-loader": "^1.5.0",
"ts-loader": "^8.0.0",
"typescript": "^5.0.0"
}
}