-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.06 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
{
"name": "path-to-hs",
"version": "0.5.0",
"description": "A website that calculates a student's chances of getting into different Chicago Public Schools high schools.",
"main": " ",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:dev": "PUBLIC_URL=https://s3.amazonaws.com/path-to-hs-dev react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build-config": "node ./config/raw-data-processing/main.js",
"deploy:production": "aws s3 sync build/ s3://chavez-hs-planner.com --acl public-read --delete",
"deploy:dev": "aws s3 sync build/ s3://path-to-hs-dev --acl public-read --delete",
"scrape-programs": "cd scraper && pipenv run python main.py ./raw-data/School_Locations_SY1718.csv"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mpingram/chavez-hs-planner.git"
},
"keywords": [
"education",
"school",
"Chicago",
"CPS",
"Chicago Public Schools",
"principal",
"teacher",
"counselor",
"high school"
],
"author": "Michael Ingram",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mpingram/chavez-hs-planner/issues"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/jest": "^23.3.9",
"@types/react-dom": "^16.0.9",
"@types/react-redux": "^6.0.9",
"@types/redux-thunk": "^2.1.0",
"chai": "^4.1.2",
"node-sass": "^4.10.0",
"react-scripts": "^2.1.1",
"typescript": "^3.1.6"
},
"dependencies": {
"@types/node": "^10.12.12",
"browser-jsonp": "^1.1.5",
"bulma": "^0.7.1",
"d3": "^5.9.7",
"lodash.debounce": "^4.0.8",
"promise-polyfill": "^7.1.2",
"react": "^16.6.3",
"react-autosuggest": "^9.3.4",
"react-dom": "^16.6.3",
"react-redux": "^5.0.6",
"react-select": "^1.2.1",
"react-tippy": "^1.2.2",
"redux": "^3.7.2",
"redux-thunk": "2.2.0",
"reselect": "^3.0.1",
"whatwg-fetch": "^2.0.4"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}