-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.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
{
"name": "react_portfolio",
"version": "1.0.0",
"description": "",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Jamesbillard12/react_portfolio.git"
},
"author": "",
"license": "ISC",
"jest": {
"setupFiles": [
"jest-localstorage-mock"
],
"globals": {
"__DEBUG__": true,
"__API_URI__": "https://staging-api.basemap.com/api/V1.0",
"__APP_ID_": "777632355777451",
"__LEGACY_USER_API_URI__": "",
"__GOOGLE_MAPS_KEY__": "AIzaSyDJweGDJJz3yBQogkfeIBExuNWW2Ruhe9c",
"process.env": {
"NODE_ENV": "testing"
}
}
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"build": "rm -rf build && webpack",
"start": "node server.js",
"watch": "webpack-dev-server --host 0.0.0.0 --inline --hot",
"deploy": "aws s3 cp build s3://james-billard.com --recursive"
},
"bugs": {
"url": "https://github.com/Jamesbillard12/react_portfolio/issues"
},
"homepage": "https://github.com/Jamesbillard12/react_portfolio#readme",
"dependencies": {
"@material-ui/core": "^1.2.0",
"@material-ui/icons": "^1.1.0",
"aws-amplify": "^0.4.4",
"aws-amplify-react": "^0.1.50",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"debounce": "^1.1.0",
"dotenv": "^6.0.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.10",
"material-design-icons": "^3.0.1",
"node-sass": "^4.9.0",
"normalize.css": "^8.0.0",
"raw-loader": "^0.5.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-fontawesome": "^1.6.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.0.2",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"uuid": "^3.2.1",
"webpack": "^4.10.2",
"webpack-dev-server": "^3.1.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"webpack-cli": "^3.0.2"
}
}