-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.06 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
{
"name": "static-boilerplate",
"version": "0.0.1",
"description": "A SIMPLE markdown based, flat html boilerplate. multilingual. With a react app & webpack & Nunjucks Layouts",
"main": "index.js",
"config": {
"markdownSourcePath": "./sample_content",
"markdownSourceGitUrl": null,
"markdownSourceGitName": null,
"useGit": "no",
"siteName": "Your Site",
"siteDescription": "this is a description of your website.",
"siteUrl": "url"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"initial-git-content": "git clone $npm_package_config_markdownSourceGitUrl",
"clean-git-content": "rm -r $npm_package_config_markdownSourceGitName && npm run initial-content",
"update-git-content": "cd $npm_package_config_markdownSourceGitName && git pull origin master",
"build-content": "babel-node convertdata",
"dev": "NODE_ENV=development webpack-dev-server --config webpack.config.js --hot",
"build": "npm run build-content && webpack --config webpack.config.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.1",
"babel-plugin-es6-promise": "^1.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-node5": "^12.0.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"babel-register-cli": "^4.0.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-import-resolver-webpack": "^0.8.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-compat": "^1.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"fs": "0.0.1-security",
"handlebars": "^4.0.10",
"handlebars-layouts": "^3.1.4",
"json-loader": "^0.5.4",
"markdown-json": "^1.3.0",
"markdown-to-json": "^0.5.1",
"marked": "^0.3.6",
"metalsmith": "^2.3.0",
"metalsmith-filetree": "0.0.0",
"metalsmith-ignore": "^0.1.2",
"metalsmith-layouts": "^1.8.1",
"metalsmith-multi-language": "^0.2.0",
"metalsmith-permalinks": "^0.5.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.5.2",
"nunjucks": "^3.0.1",
"path": "^0.12.7",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"uglifyjs-webpack-plugin": "^1.1.4",
"wax-on": "^1.2.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"bluebird": "^3.5.0",
"lodash-fp": "^0.10.4",
"react": "^15.5.4",
"react-datepicker": "^0.55.0",
"react-dom": "^15.5.4",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"react-select": "^1.0.0-rc.5",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
}
}