-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.11 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": "coleman-shropshire-react-portfolio",
"version": "1.0.0",
"description": "Personal portfolio app built in React.",
"scripts": {
"preinstall": "npm set audit false",
"start": "webpack-dev-server --config webpack/dev.config.js --watch",
"build": "cross-env NODE_ENV=production webpack --config webpack/prod.config.js --progress --display-error-details --color",
"heroku-postbuild": "npm run build",
"precommit": "eslint src",
"prod": "NODE_ENV=production node server.js"
},
"repository": {
"type": "git",
"url": "[email protected]:colemanshropshire/React-Portfolio.git"
},
"keywords": [
"es6",
"es7",
"webpack2",
"webpack3",
"starter",
"template",
"postcss",
"sass",
"css module"
],
"author": "Coleman Shropshire",
"license": "MIT",
"bugs": {
"url": "https://github.com/colemanshropshire/React-Portfolio/issues"
},
"homepage": "https://github.com/colemanshropshire/React-Portfolio",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"acorn": "^7.1.1",
"ajv": "^5.5.2",
"autoprefixer": "^9.1.0",
"axios": "^0.19.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.5",
"babel-plugin-async-to-promises": "^1.0.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"braces": ">=2.3.1",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"draft-js": "^0.11.0",
"draftjs-to-html": "^0.8.4",
"eslint": "^4.2.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.1.0",
"express": "^4.16.3",
"extract-loader": "^2.0.1",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-to-draftjs": "^1.4.0",
"html-webpack-plugin": "^3.2.0",
"lodash": ">=4.17.13",
"lodash-es": ">=4.17.14",
"minimist": ">=1.2.5",
"moment": "^2.24.0",
"node-sass": "^4.9.2",
"postcss-loader": "^2.1.6",
"react": "16.8.0",
"react-dom": "16.8.0",
"react-draft-wysiwyg": "^1.13.2",
"react-dropzone-component": "^3.2.0",
"react-html-parser": "^2.0.2",
"react-modal": "^3.9.1",
"react-redux": "5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.3.1",
"react-truncate": "^2.4.0",
"redux": "^3.7.2",
"sass-loader": "^7.1.0",
"serialize-javascript": "^2.1.2",
"striptags": "^3.1.1",
"style-loader": "^0.21.0",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.3.1",
"webpack-hot-middleware": "^2.22.3",
"webpack-merge": "^4.1.0"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"uglifyjs-webpack-plugin": "^1.2.7"
}
}