24
1
Fork 0

Tweak the package.json file

This commit is contained in:
Peter deHaan 2017-06-02 13:18:33 -07:00
parent 2c2881a880
commit 95f4df3e1b
No known key found for this signature in database
GPG Key ID: F0FC6C01C6305097
1 changed files with 10 additions and 9 deletions

View File

@ -1,25 +1,26 @@
{
"name": "portal-alpha",
"description": "P2P File Sharing Experiment",
"version": "1.0.0",
"description": "",
"scripts": {
"format": "prettier --single-quote --write 'frontend/src/*.js'",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "watchify frontend/src/main.js -o public/bundle.js -d | node server/portal_server.js"
},
"author": "",
"license": "ISC",
"author": "Mozilla (https://mozilla.org)",
"dependencies": {
"body-parser": "^1.17.2",
"connect-busboy": "0.0.2",
"express": "^4.15.3",
"fs-extra": "^3.0.1",
"path": "^0.12.7",
"prettier": "^1.3.1",
"redis": "^2.7.1"
},
"devDependencies": {
"browserify": "^14.4.0",
"prettier": "^1.3.1",
"watchify": "^3.9.0"
},
"license": "MPL-2.0",
"repository": "mozilla/something-awesome",
"scripts": {
"format": "prettier --single-quote --write 'frontend/src/*.js' 'server/*.js'",
"start": "watchify frontend/src/main.js -o public/bundle.js -d | node server/portal_server.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}