community-dapp/package.json

26 lines
555 B
JSON

{
"name": "status-community-dapp",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"start": "yarn --cwd ./packages/DApp dev",
"lint": "wsrun -c -s lint",
"lint:fix": "wsrun -c -s lint:fix",
"build": "wsrun -e -c -s build",
"test": "wsrun -e -c -s --exclude-missing test",
"clean": "wsrun -e -c -s clean && rimraf node_modules"
},
"dependencies": {
"prettier": "^2.3.1",
"wsrun": "^5.2.4"
},
"devDependencies": {
"rimraf": "^4.3.1"
}
}