-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.29 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
{
"name": "note-smart-react-ssr",
"version": "1.0.0",
"description": "NoteSmart is where you can share and advocate big ideas from books you read.",
"repository": "",
"license": "MIT",
"scripts": {
"license-check": "license-checker --exclude 'MIT, MIT OR X11, BSD, ISC, Public Domain'",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"clean": "rimraf -rf ./node_modules/.cache/babel-loader/*",
"prod": "NODE_ENV=production node src/server/index.js",
"dev": "NODE_ENV=development nodemon --watch src/server --watch config --inspect src/server/index.js"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.2.0",
"apollo-cache-inmemory": "^1.3.12",
"apollo-client": "^2.4.8",
"apollo-link-http": "^1.5.9",
"babel-loader": "^8.0.4",
"babel-plugin-inline-dotenv": "^1.2.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-universal-import": "^3.1.2",
"brotli-webpack-plugin": "^1.0.0",
"compression-webpack-plugin": "^2.0.0",
"cookie-parser": "^1.4.3",
"express": "^4.16.4",
"express-static-gzip": "^1.1.3",
"file-loader": "^3.0.1",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"import": "0.0.6",
"isomorphic-unfetch": "^3.0.0",
"markdown-with-front-matter-loader": "^0.1.0",
"node-noop": "^1.0.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-apollo": "^2.3.3",
"react-dom": "^16.7.0",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.6.3",
"react-redux-loading-bar": "^4.1.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-universal-component": "^3.0.3",
"rebass": "^3.0.0-12",
"serialize-javascript": "^1.6.0",
"styled-components": "^4.1.3",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "1.1.2",
"webpack": "^4.28.1",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "3.4.0",
"webpack-flush-chunks": "^2.0.3",
"webpack-hot-middleware": "2.24.3",
"webpack-hot-server-middleware": "^0.5.0",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.6.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.10.0",
"eslint": "^5.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-babel-module": "^5.0.0-beta.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.1",
"license-checker": "^25.0.1",
"lint-staged": "^8.1.0",
"nodemon": "^1.18.9"
},
"engines": {
"node": ">=8.9.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}