seitime-frappe/package.json
Faris Ansari 92e8856588
New Build System: Rollup (#5010)
* JS build working

* Css build working!

* Uglify JS in production

* fix codacy

* Add frappe.commands.popen

* FIx ESLint errors

* Add socket.io to package.json

* ignore subprocess warnings

* Add babel-runtime

* sleep 20 after bench start

* remove set -e

* [FIX] non-shell subprocess call

* [FIX] use shell = False

* split commands
2018-02-20 13:47:48 +05:30

36 lines
927 B
JSON

{
"name": "frappe",
"scripts": {
"build": "rollup -c",
"production": "FRAPPE_ENV=production rollup -c",
"watch": "rollup -c -w --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frappe/frappe.git"
},
"author": "Frappé Technologies Pvt. Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/frappe/frappe/issues"
},
"homepage": "https://frappe.io",
"dependencies": {
"cookie": "^0.3.1",
"express": "^4.16.2",
"redis": "^2.8.0",
"showdown": "^1.8.6",
"socket.io": "^2.0.4",
"superagent": "^3.8.2"
},
"devDependencies": {
"babel-runtime": "^6.26.0",
"rollup": "^0.55.3",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-less": "^0.1.3",
"rollup-plugin-multi-entry": "^2.0.2",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-uglify": "^3.0.0"
}
}