forked from MakeContributions/ideahub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.87 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
{
"name": "ideahub",
"version": "1.0.0",
"private": true,
"description": "A collection of ideas and projects that contain from beginner to advance :octocat: 🎯🚀",
"author": "MakeContributions <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"scraper": "node ./src/scraper/index.js",
"test": "vue-cli-service test:unit"
},
"main": "index.js",
"dependencies": {
"core-js": "^3.6.5",
"fs": "0.0.2",
"vue": "^2.6.11",
"vue-router": "^3.2.0",
"vuetify": "^2.4.0"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-config-google": "^0.14.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.2.2",
"jest": "^26.6.3",
"lint-staged": "^9.5.0",
"prettier": "^2.2.1",
"sass": "^1.32.0",
"sass-loader": "^10.0.0",
"vue-cli-plugin-vuetify": "~2.4.0",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.7.0"
},
"bugs": {
"url": "https://github.com/MakeContributions/ideahub/issues"
},
"directories": {
"doc": "docs",
"test": "test"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://github.com/MakeContributions/ideahub#readme",
"keywords": [
"projects",
"ideas",
"hub"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/MakeContributions/ideahub.git"
}
}