-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.54 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
{
"name": "ghostcode",
"version": "0.1.0",
"description": "vscode-like ghost theme",
"main": "index.js",
"scripts": {
"dev": "rimraf assets/built && webpack -w --hide-modules",
"build": "rimraf assets/built && webpack --hide-modules -p --devtool none",
"theme": "node tools/themeFormat.js && node tools/theme.js",
"pretheme:dev": "node tools/themeFormat.js",
"theme:dev": "nodemon tools/theme.js -w src/styles/themes/common.scss -w tools/theme.js -w src/styles/themes/default.scss -w config.js --ext scss,js"
},
"config": {
"posts_per_page": 888
},
"keywords": ["ghost", "theme"],
"author": {
"name": "rangzf",
"email": "[email protected]"
},
"browserslist": ["ie >= 10", "ie_mob >= 10", "ff >= 30", "chrome >= 34", "safari >= 7", "opera >= 23", "ios >= 7", "android >= 4.4", "bb >= 10"],
"license": "ISC",
"devDependencies": {
"autoprefixer": "^7.2.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-dynamic-import-webpack": "^1.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.8",
"extract-text-webpack-plugin": "^3.0.2",
"hex-to-rgba": "^1.0.1",
"node-sass": "^4.7.2",
"postcss-loader": "^2.0.10",
"sass-loader": "^6.0.6",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"ghosthunter": "git+https://github.com/jamalneufeld/ghostHunter.git",
"history": "^4.7.2",
"mitt": "^1.1.2"
}
}