-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "nflearning",
"version": "1.0.0",
"description": "Machine learning for NFL data.",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js --progress --colors --mode development",
"watch": "webpack --config webpack.config.js --watch --mode development",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "[email protected]:cs196/fall-2019-projects/nflearning.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"victory": "^33.1.5",
"webpack": "^4.41.2",
"webpack-bundle-tracker": "^0.4.3",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"engines": {
"node": "10.16.3",
"npm": "6.9.0"
}
}