-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
56 lines (56 loc) · 2.13 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
{
"name": "uno-game",
"version": "0.0.0",
"private": true,
"author": "Guilherme Mota <[email protected]>",
"license": "MIT",
"scripts": {
"dev:resources": "docker-compose up",
"setup": "npm run setup:app && npm run setup:env",
"setup:app": "npm install && npm run bootstrap",
"setup:env": "npm run env:unapy && npm run env:unoenty",
"bootstrap": "lerna bootstrap --use-workspaces --hoist && lerna link",
"list": "lerna ls",
"deploy": "lerna version",
"install:unapy": "lerna exec --stream --scope @uno-game/unapy -- npm install",
"build:unapy": "lerna run build --scope @uno-game/unapy --stream",
"start:unapy": "lerna run start --scope @uno-game/unapy --stream",
"dev:unapy": "lerna run dev --scope @uno-game/unapy --stream",
"env:unapy": "cp packages/unapy/.env.example packages/unapy/.env",
"install:unoenty": "lerna exec --stream --scope @uno-game/unoenty -- npm install",
"build:unoenty": "lerna run build --scope @uno-game/unoenty --stream",
"env:unoenty": "cp packages/unoenty/.env.example packages/unoenty/.env",
"ci:unapy": "npm install && npm run install:unapy && npm run bootstrap && npm run build:unapy",
"ci:unoenty": "npm install && npm run install:unoenty && npm run bootstrap && npm run build:unoenty"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-standard": "^4.0.1",
"git-commit-msg-linter": "^2.4.3",
"husky": "^4.2.5",
"lerna": "^3.20.2",
"lint-staged": "^10.2.10",
"typescript": "^3.9.2"
},
"workspaces": [
"packages/*",
"packages/shared/*"
],
"dependencies": {
"socket.io-redis": "^6.1.0"
},
"engines": {
"node": ">=0.10.3 <15"
}
}