forked from amyjko/faculty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.41 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
{
"name": "UWFacultyPage",
"version": "1.0.0",
"description": "The webpage for University of Washington professor Andy J. Ko.",
"license": "Creative Commons Attribution-NonCommercial 4.0 International",
"repository": "https://github.com/andyjko/faculty.git",
"scripts": {
"watch": "watchify -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] app.js -o \"> build/app.js; npm run test\" -v --poll",
"build": "browserify -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] app.js | uglifyjs > build/app.js",
"diff": "rsync --dry-run -avz --delete --include 'build' --exclude-from='.gitignore' --exclude '.git' . ~/public_html",
"test": "rsync -avz --delete --include 'build' --exclude-from='.gitignore' --exclude '.git' --exclude '.htaccess' . ~/public_html/test",
"ship": "rsync -avz --delete --include 'build' --exclude-from='.gitignore' --exclude '.git' --exclude 'test' . ~/public_html",
"deploy": "npm run build; npm run ship"
},
"devDependencies": {
"browserify": "^16.2",
"watchify": "^3.11",
"babelify": "^10",
"@babel/core": "^7",
"@babel/cli": "^7",
"@babel/preset-react": "^7",
"@babel/preset-env": "^7",
"uglify-js": "^3.4.7"
},
"dependencies": {
"bootstrap": "^3.3.7",
"history": "^4.7.2",
"jquery": "^3.0.0",
"lodash": "^4.17.10",
"npm": "^5.10.0",
"react": "^16.3",
"react-dom": "^16.3",
"react-router-dom": "^4.3.1"
}
}