-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.99 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.99 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"version": "2.2.0",
"author": {
"name": "BILL SPLITTER",
"email": "dullahbillsplitter.com",
"url": "http://dullahbillsplitter.com"
},
"description": "React boilerplate with ES2015, Express.js, and Webpack 3",
"license": "MIT",
"engines": {
"node": "8.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helloimhd/bills.git"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/server",
"start": "cross-env NODE_ENV=production node build/server",
"prebuild": "rimraf build",
"build": "npm run build:client && npm run build:server",
"build:client": "cross-env NODE_ENV=production webpack -p --progress --config=config/webpack.config.prod.js",
"build:server": "copyfiles -a -u 1 \"src/server/**/**/*\" build",
"lint": "eslint --ignore-path .gitignore --ignore-pattern node_modules -- .",
"prettier": "prettier --ignore-path .gitignore --write './**/*.js'",
"test": "exit 1",
"release:patch": "npm run lint && npx standard-version -r patch && git push --follow-tags origin master",
"release:minor": "npm run lint && npx standard-version -r minor && git push --follow-tags origin master",
"release:major": "npm run lint && npx standard-version -r major && git push --follow-tags origin master"
},
"postcss": {},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.3.1",
"babel-cli": ">=6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": ">=10.0.1",
"babel-loader": ">=8.0.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-airbnb": ">=3.2.0",
"babel-preset-react": ">=6.24.1",
"babel-watch": ">=7.0.0",
"copyfiles": ">=2.1.0",
"cross-env": ">=5.2.0",
"css-loader": ">=2.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": ">=4.0.0",
"eslint-import-resolver-webpack": ">=0.11.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-babel": ">=5.3.0",
"eslint-plugin-flowtype": ">=3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": ">=6.2.1",
"eslint-plugin-prettier": ">=3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-relay": ">=1.0.0",
"extract-text-webpack-plugin": ">=4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-loader": ">=0.5.5",
"html-webpack-harddisk-plugin": ">=1.0.1",
"html-webpack-plugin": ">=3.2.0",
"postcss-load-config": ">=2.0.0",
"postcss-loader": ">=3.0.0",
"prettier": ">=1.16.4",
"rimraf": ">=2.6.3",
"sass-loader": ">=7.1.0",
"style-loader": ">=0.23.1",
"uglifyjs-webpack-plugin": ">=2.1.1",
"webpack-cli": ">=3.2.3",
"webpack-merge": ">=4.2.1"
},
"dependencies": {
"airbnb-browser-shims": ">=3.1.0",
"babel-polyfill": ">=6.26.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.14.0",
"compression": ">=1.7.3",
"cookie-parser": "^1.4.4",
"eslint-config-airbnb": ">=17.1.0",
"eslint-config-fbjs": ">=2.1.0",
"express": "^4.17.0",
"express-react-views": "^0.11.0",
"form-data": "^2.3.3",
"immutable": ">=4.0.0-rc.12",
"js-cookie": "^2.2.0",
"js-sha256": "^0.9.0",
"method-override": "^3.0.0",
"moment": "^2.24.0",
"multer": "^1.4.1",
"node": "^12.3.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.12.0",
"nodemon": "^1.19.0",
"normalize.css": "^8.0.1",
"pg": "^7.8.0",
"prop-types": ">=15.7.2",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-hot-loader": ">=4.6.5",
"react-router-dom": "^5.0.0",
"request": "^2.88.0",
"sanitize.css": ">=8.0.0",
"uninstall": "0.0.0",
"webpack": "^4.29.4",
"webpack-dev-middleware": ">=3.5.2",
"webpack-hot-middleware": ">=2.24.3",
"winston": ">=3.2.1",
"xmlhttprequest": "^1.8.0"
},
"name": "bills",
"bugs": {
"url": "https://github.com/antonfisher/react-express-webpack/issues"
},
"homepage": "https://github.com/antonfisher/react-express-webpack#readme",
"main": "index.js"
}