-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.75 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
{
"name": "pennapps",
"version": "0.1.0",
"private": true,
"homepage": "http://pennapps.com",
"devDependencies": {
"react-scripts": "^3.0.0"
},
"dependencies": {
"async": "^2.1.5",
"jsonfile": "^2.4.0",
"open-graph-scraper": "^3.6.1",
"prop-types": "^15.7.2",
"react": "^15.4.2",
"react-addons-pure-render-mixin": "^15.6.3",
"react-dom": "^15.4.2",
"react-scroll": "^1.4.8",
"react-waypoint": "^6.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && echo 'pennapps.com' > build/CNAME && git add build/CNAME && git add src public build && git commit -am 'Building site for gh-pages' && git checkout -B gh-pages && git add -f build && git stash && git stash apply && git commit -am 'Rebuild' && git filter-branch -f --prune-empty --subdirectory-filter build && git push -f origin gh-pages && git checkout - && git push origin master",
"build2": "react-scripts build && echo 'pennapps.com' > build/CNAME && cd build && find . -name '.DS_Store' -type f -delete && cd .. && git add build/CNAME && git add src public build && git commit -am 'Building site for gh-pages' && git checkout -B gh-pages && git add -f build && git commit -am 'Rebuild' && git filter-branch -f --prune-empty --subdirectory-filter build && git push -f origin gh-pages && git checkout master && git push origin master",
"build-basic": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"scrape": "node scraper/scraper.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}