mirror of
https://github.com/status-im/community-dapp.git
synced 2025-02-23 03:28:21 +00:00
* revert lockfile * revert deps * update webpack * update mocha * update ts-node * add core-js * update js-waku * add rimraf * set ts-node and typescript versions * update ts-node in contracts * update ts-node in dapp * update typescript in contracts * update typescript in dapp * extend tsconfig files * remove ts-node/register from .mocharc * fix @usedapp/core import * fix `VotingContract.sol` lint errors * set `exit` config
26 lines
534 B
JSON
26 lines
534 B
JSON
{
|
|
"name": "status-community-dapp",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"start": "yarn --cwd ./packages/DApp start",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"prettier": "^2.3.1",
|
|
"wsrun": "^5.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"rimraf": "^4.3.1"
|
|
}
|
|
}
|