-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
88 lines (88 loc) · 2.8 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
{
"name": "no-name-pokemon-game",
"version": "0.3.8",
"description": "This is a game that is based off of PokeIdle Extended (which in turn is based off of PokeIdle).",
"main": "index.js",
"scripts": {
"build": "wp --mode production",
"build:gh-pages": "npm run build -- --folder docs",
"start": "wp --mode development",
"lint": "npx eslint --ext .js,.ts,.vue ./src",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --skipLibCheck",
"test": "jest --config ./.config/jest.config.js",
"check": "concurrently \"npm:lint\" \"npm:typecheck\" \"npm:test\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/unclebanks/unclebanks.github.io.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/unclebanks/unclebanks.github.io/issues"
},
"homepage": "https://github.com/unclebanks/unclebanks.github.io#readme",
"babel": {
"extends": "./.config/.babelrc"
},
"browserslist": [
"defaults",
"not IE > 0"
],
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@babel/runtime": "^7.16.5",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vue/compiler-sfc": "^3.2.26",
"autoprefixer": "^10.4.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.3",
"babel-preset-typescript-vue3": "^2.0.16",
"bulma": "^0.9.3",
"compression-webpack-plugin": "^7.1.2",
"concurrently": "^6.5.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^1.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-vue": "^7.20.0",
"eslint-webpack-plugin": "^2.6.0",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.6.2",
"node-sass": "^5.0.0",
"postcss": "^8.4.5",
"postcss-loader": "^5.3.0",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.3.0",
"typescript": "^4.5.4",
"vue": "^3.2.26",
"vue-loader": "^16.8.3",
"vuex": "^4.0.2",
"webpack": "^5.65.0",
"webpack-merge": "^5.8.0",
"webpack-nano": "^1.1.1",
"webpack-plugin-serve": "^1.5.0",
"webpackbar": "^5.0.2"
},
"dependencies": {
"npm": "^8.3.0"
}
}