-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 2.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "video-game-db-supplemental-data",
"version": "1.0.0",
"description": "JSON files generator to supplement video game db APIs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"start": "nodemon server/server.js & npm run serve",
"ids": "node scripts/utility/incrementIdsForJson",
"scrape:gematsu": "node scripts/utility/scrapeGematsu.js",
"scrape:wiki": "node scripts/utility/scrapeWikiLists.js",
"scrape:wiki:tables": "node scripts/utility/wikiScrapeTables.js",
"stats": "node scripts/utility/apiStats.js",
"console:list": "node scripts/utility/makeConsoleSpecificListImproved.js",
"fillMatches": "node scripts/utility/fillMatches.js",
"fix:details": "node scripts/utility/fixDetails.js",
"fix:missing": "node scripts/utility/findEntriesMissingAll.js",
"fix:numbered": "node scripts/utility/cleanNumberedList.js",
"fix:dump": "node scripts/utility/formatStringDump.js",
"formatMissing": "node scripts/utility/fillMissingData.js",
"updateAll": "node scripts/utility/updateAllLists/updateAllLists.js",
"updatePlatforms": "node scripts/utility/updateAllLists/updateConsoleLists.js",
"platformInfo": "node scripts/utility/getPlatformInfo/getPlatformInfo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgdigitaljedi/video-game-db-supplemental-data.git"
},
"keywords": [
"Express",
"video",
"games",
"vue",
"JSON",
"backward",
"compatibility",
"Xbox",
"Playstation"
],
"author": "Joey Gauthier",
"license": "ISC",
"bugs": {
"url": "https://github.com/jgdigitaljedi/video-game-db-supplemental-data/issues"
},
"homepage": "https://github.com/jgdigitaljedi/video-game-db-supplemental-data#readme",
"dependencies": {
"@mdi/font": "^4.9.95",
"apicalypse": "^0.1.9",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"express": "^4.18.2",
"glob": "^8.0.3",
"igdb-api-node": "^5.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"request": "^2.88.2",
"stringman": "^0.12.1",
"stringman-utils": "^1.8.0",
"vue": "^2.7.8",
"vuetify": "^2.6.12",
"vuex": "^3.6.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"@vue/eslint-config-prettier": "^5.1.0",
"babel-eslint": "^10.1.0",
"chalk": "^2.4.2",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "^5.2.3",
"node-sass": "^4.14.1",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"sass": "^1.54.0",
"sass-loader": "^7.3.1",
"vue-cli-plugin-vuetify": "^0.6.3",
"vue-template-compiler": "^2.7.8",
"vuetify-loader": "^1.9.2"
}
}