-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 3.75 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "just-dev",
"description": "A default developer blog theme",
"demo": "https://intl.gaplo.tech",
"version": "2.0.0",
"engines": {
"ghost": ">=5.0.0"
},
"card_assets": true,
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --config webpack/webpack.config.dev.js",
"test": "yarn build",
"lint": "eslint --fix --ext .js gulpfile.js src/js/",
"build": "npm-run-all -s lint build:*",
"build:test": "gscan --v5 --fatal --verbose .",
"build:theme": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.prod.js;",
"build:zip": "gulp zip",
"deploy": "node deploy.js",
"release": "yarn build && yarn deploy",
"restart": "ghost restart"
},
"author": {
"name": "GapLoTech",
"email": "gaplotech@gmail.com",
"url": "https://intl.gaplo.tech"
},
"gpm": {
"type": "theme",
"categories": [
"Minimal",
"Magazine"
]
},
"keywords": [
"ghost",
"theme",
"ghost-theme"
],
"repository": {
"type": "git",
"url": "https://github.com/gaplotech/just-dev-ghost-theme.git"
},
"bugs": "https://github.com/gaplotech/just-dev-ghost-theme/issues",
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/plugin-proposal-class-properties": "^7.8.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@tryghost/release-utils": "0.6.0",
"axios": "^0.27.2",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-preset-vue": "^2.0.2",
"beeper": "^2.0.0",
"browser-sync": "^2.26.7",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.3",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^6.0.0",
"form-data": "^3.0.0",
"glob": "^7.1.6",
"gscan": "4.36.1",
"gulp": "4.0.2",
"gulp-zip": "5.0.1",
"html-webpack-plugin": "^4.0.0-beta.14",
"jsonwebtoken": "^8.5.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"pump": "^3.0.0",
"remove-files-webpack-plugin": "^1.4.0",
"sass-loader": "^13.2.2",
"style-loader": "^1.1.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue-loader": "^15.9.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2",
"webpack-merge": "^5.8.0",
"write-file-webpack-plugin": "^4.5.1"
},
"browserslist": [
"defaults"
],
"config": {
"posts_per_page": 10,
"image_sizes": {
"xxs": {
"width": 30
},
"xs": {
"width": 100
},
"s": {
"width": 300
},
"m": {
"width": 600
},
"l": {
"width": 1000
},
"xl": {
"width": 2000
}
}
},
"dependencies": {
"bulma": "^0.8.0",
"medium-zoom": "^1.0.6",
"vue": "^2.6.11"
}
}