-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 2.02 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
{
"name": "alola-pokemon-locations",
"version": "1.0.0",
"description": "Tool to crawl the location of all pokemon in the Alola region from Bulbapedia and render it in a nicer way to follow as you play the game",
"main": "index.js",
"author": "[\"Marcos Mellado\", \"[email protected]\", \"https://mellados.com\"]",
"license": "CC-BY-NC-SA-2.5",
"private": false,
"dependencies": {
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"copy-webpack-plugin": "^4.5.2",
"fs-extra": "^7.0.0",
"js-beautify": "^1.7.5",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"sanitize-html": "^1.18.4",
"serviceworker-webpack-plugin": "^1.0.1",
"vue": "^2.5.17"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-vue": "^4.7.1",
"file-loader": "^2.0.0",
"gh-pages": "^1.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.1",
"pre-commit": "^1.2.2",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"vue-loader": "^15.4.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"scripts": {
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"lint": "eslint ./src/**/*.{js,vue}",
"clean": "rimraf dist",
"clean:data": "rimraf data",
"crawl": "node ./src/scripts/crawler.js",
"dev": "npm run clean && cross-env NODE_ENV=development webpack-dev-server",
"build": "npm run clean && cross-env NODE_ENV=production webpack",
"deploy": "npm run build && gh-pages -d dist"
},
"pre-commit": [
"precommit-msg",
"lint"
]
}