-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "cfb-ranking-builder",
"homepage": "https://rankings.computer",
"version": "0.1.0",
"private": true,
"dependencies": {
"classnames": "^2.2.6",
"fuzzy-search": "^3.0.1",
"gh-pages": "^2.1.1",
"lodash": "^4.17.15",
"mathjs": "^6.0.4",
"mkdirp": "^0.5.1",
"ncaa-stats": "^2.0.0",
"prismjs": "^1.17.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"react-simple-code-editor": "^0.9.14"
},
"scripts": {
"start": "react-scripts start",
"jobs": "./bin/run-jobs.sh",
"prebuild": "npm run jobs && rm -rf public/data && cp -r data public/data",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "react-scripts test --transformIgnorePatterns \"node_modules/(?!mathjs)/\"",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}