-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.1 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "jokenpo",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": {
"packages": [
"backend/*",
"frontend"
]
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcotgs/jokenpo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcotgs/jokenpo/issues"
},
"scripts": {
"postinstall": "husky install",
"pm2": "pm2",
"start": "pm2 start ./ecosystem.yaml",
"start:backend": "node ./scripts/start-backend.js",
"start:frontend": "pm2 start ./ecosystem.yaml --only frontend",
"start:database": "node ./scripts/start-local-database.js",
"lerna": "lerna",
"new:version": "lerna version --conventional-commits --yes",
"lint": "eslint \"*/**/*.{js,ts}\" --quiet --fix",
"prepare": "husky install"
},
"homepage": "https://github.com/marcotgs/rock-paper-scissors#readme",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "26.0.20",
"@types/node": "^14.0.14",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"chalk": "^4.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.3.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "=4",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": ">=10",
"pm2": "^4.4.0",
"prettier": "2.2.1",
"shelljs": "^0.8.4",
"supertest": "^6.1.3",
"ts-jest": "^26.5.3",
"ts-loader": "^8.0.18",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^4.46.0"
},
"dependencies": {
"graphql": "^15.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}