-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "stf",
"version": "1.0.0",
"private": true,
"description": "Smart Table Football - App for those who want improves their games experience",
"keywords": [
"Feathers.js",
"Socket.io",
"React-admin",
"IoT",
"PWA",
"Smart Table Football",
"STF",
"table football",
"table soccer",
"foosball"
],
"homepage": "https://smart-table-football.netlify.app",
"repository": {
"type": "git",
"url": "http://github.com/Jozwiaczek/smart-table-football.git"
},
"author": {
"name": "Jakub Jóźwiak",
"email": "kubencki@gmail.com"
},
"workspaces": [
"packages/*"
],
"scripts": {
"check": "yarn prettier && yarn lint",
"grant-scripty-permissions": "chmod -R +x scripts",
"heroku-postbuild": "yarn install",
"postinstall": "cd packages/ui-components && yarn postinstall",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"removeNodeModules": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +",
"sortPackageJson": "sort-package-json & lerna exec sort-package-json",
"start": "if [ -n \\\\\\\"$START_API\\\\\\\" ]; then cd packages/api && echo api && yarn start; elif [ -n \\\\\\\"$START_ADMIN\\\\\\\" ]; then cd packages/admin && echo admin && yarn start; else cd packages/player && echo player && yarn start; fi"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "4.0.0",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"pre-commit": "^1.2.2",
"prettier": "2.1.1",
"rimraf": "^3.0.2",
"scripty": "^2.0.0",
"sort-package-json": "^1.48.0"
},
"engines": {
"node": ">=12.x",
"yarn": ">=1.x"
}
}