Merge pull request #40 from pdehaan/package-tweaks
Tweak the package.json file
This commit is contained in:
commit
ce798d89f9
19
package.json
19
package.json
|
@ -1,25 +1,26 @@
|
||||||
{
|
{
|
||||||
"name": "portal-alpha",
|
"name": "portal-alpha",
|
||||||
|
"description": "P2P File Sharing Experiment",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "",
|
"author": "Mozilla (https://mozilla.org)",
|
||||||
"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",
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"body-parser": "^1.17.2",
|
"body-parser": "^1.17.2",
|
||||||
"connect-busboy": "0.0.2",
|
"connect-busboy": "0.0.2",
|
||||||
"express": "^4.15.3",
|
"express": "^4.15.3",
|
||||||
"fs-extra": "^3.0.1",
|
"fs-extra": "^3.0.1",
|
||||||
"path": "^0.12.7",
|
"path": "^0.12.7",
|
||||||
"prettier": "^1.3.1",
|
|
||||||
"redis": "^2.7.1"
|
"redis": "^2.7.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"browserify": "^14.4.0",
|
"browserify": "^14.4.0",
|
||||||
|
"prettier": "^1.3.1",
|
||||||
"watchify": "^3.9.0"
|
"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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue