-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "nflAPI",
"version": "1.0.0",
"description": "NFL Stats from nfl.com API",
"main": "app.js",
"scripts": {
"build": "webpack",
"start": "nodemon ./src/server/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^0.17.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.9",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"express": "^4.16.2",
"html-webpack-plugin": "^3.2.0",
"memory-cache": "^0.2.0",
"nodemon": "^1.12.1",
"style-loader": "^0.19.1",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.9.4",
"webpack-hot-middleware": "^2.22.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hcam05/NFLStats.git"
},
"bugs": {
"url": "https://github.com/hcam05/NFLStats/issues"
},
"homepage": "https://github.com/hcam05/NFLStats#readme"
}