Files
snk/package.json
2021-10-04 09:41:55 +02:00

27 lines
827 B
JSON

{
"name": "snk",
"description": "Generates a snake game from a github user contributions grid",
"version": "1.0.0",
"private": true,
"repository": "github:platane/snk",
"devDependencies": {
"@types/jest": "27.0.2",
"@types/node": "16.0.0",
"jest": "27.2.4",
"prettier": "2.4.1",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
},
"workspaces": [
"packages/**"
],
"scripts": {
"type": "tsc --noEmit",
"lint": "yarn prettier -c '**/*.{ts,js,json,md,yml,yaml}' '!packages/action/dist/**' '!packages/demo/dist/**' '!packages/demo/webpack.config.js'",
"test": "jest --verbose --passWithNoTests --no-cache",
"dev:demo": "( cd packages/demo ; yarn dev )",
"build:demo": "( cd packages/demo ; yarn build )",
"build:action": "( cd packages/action ; yarn build )"
}
}