12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "private": true,
- "name": "storage-node",
- "version": "1.0.0",
- "engines": {
- "node": ">=14.0.0",
- "yarn": "^1.22.0"
- },
- "homepage": "https://github.com/Joystream/joystream/",
- "bugs": {
- "url": "https://github.com/Joystream/joystream/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/Joystream/joystream.git"
- },
- "license": "GPL-3.0-only",
- "contributors": [
- {
- "name": "Joystream",
- "url": "https://joystream.org"
- }
- ],
- "keywords": [
- "joystream",
- "storage",
- "node"
- ],
- "os": [
- "darwin",
- "linux"
- ],
- "scripts": {
- "test": "wsrun --serial test",
- "lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
- "build": "yarn workspace @joystream/storage-cli run build",
- "checks": "prettier . --check && yarn lint",
- "format": "prettier . --write"
- },
- "devDependencies": {
- "@types/chai": "^4.2.11",
- "@types/mocha": "^7.0.2",
- "eslint": "^7.6.0",
- "eslint-config-esnext": "^4.1.0",
- "eslint-config-prettier": "^6.11.0",
- "eslint-plugin-babel": "^5.3.1",
- "eslint-plugin-prettier": "^3.1.4",
- "prettier": "^2.0.5",
- "typescript": "^3.9.6",
- "wsrun": "^3.6.5"
- },
- "volta": {
- "extends": "../package.json"
- }
- }
|