-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.78 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
{
"name": "blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server",
"heroku-postbuild": "npm run build",
"staticize": "node staticize",
"prebuild": "rm -rf dist",
"build": "webpack --mode=production",
"postbuild": "npm run staticize",
"lint": "eslint --ext .js,.jsx ./"
},
"keywords": [],
"author": "Victor",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"express": "^4.16.4",
"helmet-csp": "^2.7.1",
"inferno": "^6.0.3",
"inferno-hydrate": "^6.0.3",
"inferno-redux": "^6.0.3",
"inferno-router": "^6.0.3",
"inferno-server": "^6.0.3",
"normalize.css": "^8.0.0",
"prism-themes": "^1.0.1",
"prismjs": "^1.15.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-inferno": "^6.0.2",
"css-loader": "^1.0.0",
"css-modules-require-hook": "^4.2.3",
"cssnano": "^4.1.7",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"marked": "^0.5.1",
"mini-css-extract-plugin": "^0.4.4",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.1",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.2.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.4.0",
"webpack-hot-middleware": "^2.24.3"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie < 8"
]
}