-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 2.78 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
{
"name": "react-starter",
"version": "1.0.0",
"description": "A basic template that consists of the essential elements that are required to start building a React application",
"homepage": "http://kaitlinmctigue.github.io",
"scripts": {
"build": "webpack",
"build:dev": "npm run build -- --env.env=dev",
"build:dev:watch": "npm run build:dev -- --watch",
"build:dev:bundleanalyze": "npm run build:dev -- --env.addons=bundleanalyze",
"serve:dev": "webpack-dev-server --env.env=dev --hot",
"serve:dev:dashboard": "webpack-dashboard -- webpack-dev-server --hot --env.env=dev --env.addons=dashboard",
"build:prod": "npm run build -- -p --env.env=prod",
"build:prod:watch": "npm run build:prod -- --watch",
"build:prod:bundleanalyze": "npm run build:prod -- --env.addons=bundleanalyze",
"serve:prod": "npm run build:prod && live-server ./public",
"lint": "eslint .; exit 0",
"lint:fix": "eslint . --fix; exit 0",
"start": "npm run serve:dev",
"test": "echo \"No tests available\"; exit 0",
"deploy": "npm run build:prod && gh-pages -b master -d public"
},
"license": "MIT",
"babel": {
"presets": [
"env",
"react"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.8.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"live-server": "^1.2.0",
"node-sass": "^4.9.0",
"react-social-icons": "^3.0.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.9.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^2.1.4",
"webpack-dashboard": "^2.0.0",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.5.0",
"@fortawesome/fontawesome-svg-core": "^1.2.8",
"@fortawesome/free-solid-svg-icons": "^5.5.0",
"@fortawesome/react-fontawesome": "^0.1.3",
"bootstrap": "^3.3.7",
"i": "^0.3.6",
"normalize.css": "^8.0.0",
"npm": "^6.4.1",
"prop-types": "^15.6.2",
"react": "^16.4.0",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.4.0",
"react-ga": "^2.7.0",
"react-image-lightbox": "^5.1.0",
"react-pdf": "^4.0.0",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.3.1",
"tableau-api": "^2.2.3",
"tableau-react": "^1.2.2"
}
}