status-web/packages/status-communities/package.json

26 lines
798 B
JSON
Raw Normal View History

2021-09-13 05:54:05 +00:00
{
"name": "status-communities",
"packageManager": "yarn@3.0.1",
2021-09-14 02:50:33 +00:00
"scripts": {
"build": "tsc -p tsconfig.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" \"./*.json\" \"*.conf.js\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" \"./*.json\" \"*.conf.js\" --list-different",
"test:spelling": "cspell \"{README.md,.github/*.md,guides/*.md,src/**/*.ts}\"",
"test:unit": "nyc --silent mocha",
"proto": "run-s 'proto:*'",
"proto:lint": "buf lint",
"proto:build": "buf generate"
},
2021-09-13 05:54:05 +00:00
"devDependencies": {
2021-09-14 02:50:33 +00:00
"npm-run-all": "^4.1.5",
"ts-proto": "^1.83.0",
2021-09-13 05:54:05 +00:00
"typescript": "^4.4.3"
2021-09-14 02:50:33 +00:00
},
"dependencies": {
"protobufjs": "^6.11.2"
2021-09-13 05:54:05 +00:00
}
}