-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
103 lines (103 loc) · 3.63 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
103
{
"name": "flush-requires-boilerplate-webpack-chunknames",
"description": "A boilerplate showing how to achieve Universal Code-Splitting and Universal HMR with Webpack 4, react-universal-component, webpack-flush-chunks and extract-css-chunks-webpack-plugin",
"version": "3.0.0",
"main": "server/index.js",
"author": "James Gillmore <[email protected]>",
"contributors": [
"Zackary Jackson <[email protected]> (https://github.com/ScriptedAlchemy)"
],
"license": "MIT",
"scripts": {
"start": "npm run clean && cross-env NODE_ENV=development node server/index.js",
"start:prod": "npm run clean && cross-env NODE_ENV=production node server/index.js",
"format": "prettier --single-quote --semi=false --write '{src,server,webpack}/**/*. js' && eslint --fix src server webpack",
"clean": "rimraf buildClient buildServer",
"cm": "git-cz",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"colors": "^1.3.3",
"express": "^4.17.1",
"express-no-favicons": "^0.0.1",
"extract-css-chunks-webpack-plugin": "^4.5.2",
"history": "^4.9.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-universal-component": "^4.0.0",
"webpack-dev-middleware": "^3.7.0",
"webpack-flush-chunks": "^2.0.3",
"snyk": "^1.290.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-universal-import": "^4.0.0",
"babel-watch": "^7.0.0",
"commitizen": "^3.1.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^3.9.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.4.0",
"lint-staged": "^8.2.0",
"poststylus": "^1.0.0",
"prettier": "^1.18.0",
"react-hot-loader": "^4.9.0",
"rimraf": "^2.6.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"travis-github-status": "^1.6.3",
"webpack": "4.33.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-hot-server-middleware": "^0.6.0",
"write-file-webpack-plugin": "^4.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --single-quote --semi=false --write",
"eslint --fix",
"git add"
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"snyk": true
}