This repository has been archived by the owner on Apr 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.28 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
{
"name": "PeterSzerzoGhost",
"version": "0.1.0",
"description": "Single-page Ghost theme",
"main": "index.js",
"scripts": {
"create-build-folders": "mkdir -p assets/js && mkdir -p build",
"spec": "mocha src/**/*_spec.js --compilers js:babel-core/register",
"dev": "NODE_ENV=development webpack --config webpack.config.babel.js --watch",
"build-assets": "NODE_ENV=production webpack --config webpack.config.babel.js",
"copy-theme-files": "cp -R assets build/psz-theme && cp *.hbs build/psz-theme && cp package.json build/psz-theme",
"build": "npm run create-build-folders && npm run build-assets && npm run copy-theme-files",
"testserver": "NODE_ENV=development node test_server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pickled-plugins/psz-theme.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pickled-plugins/psz-theme/issues"
},
"homepage": "https://github.com/pickled-plugins/psz-theme#readme",
"devDependencies": {
"assert": "^1.3.0",
"autoprefixer": "^6.3.6",
"babel-core": "^6.7.7",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.3",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.9.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^4.3.0",
"express": "^4.13.4",
"flowcheck": "^0.2.7",
"flowcheck-loader": "^1.0.0",
"imports-loader": "^0.6.5",
"jade": "^1.11.0",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"node-sass": "^3.6.0",
"postcss-loader": "^0.8.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.0",
"webpack": "^1.13.0",
"webpack-validator": "^2.1.2",
"worker-loader": "^0.7.0"
},
"dependencies": {
"babel-polyfill": "^6.7.4",
"classnames": "^2.2.4",
"domready": "^1.0.8",
"history": "^2.1.0",
"local-links": "^1.4.0",
"marked": "^0.3.5",
"moment": "^2.13.0",
"normalize.css": "^3.0.3",
"react": "15.0.1",
"react-dom": "15.0.1",
"react-redux": "^4.4.0",
"react-router": "2.4.0",
"redux": "^3.3.1",
"redux-thunk": "^2.1.0",
"route-parser": "0.0.5",
"whatwg-fetch": "^0.11.0"
}
}