community-dapp/package.json

30 lines
635 B
JSON
Raw Normal View History

{
"name": "status-community-dapp",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
2023-05-05 15:48:13 +00:00
"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"
},
"resolutions": {
"js-waku": "0.30.0",
"protons-runtime": "3.1.0"
},
"dependencies": {
"prettier": "^2.3.1",
"wsrun": "^5.2.4"
},
"devDependencies": {
"rimraf": "^4.3.1"
}
}