-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.48 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
{
"name": "the-freelancer-interview-project",
"version": "0.0.0",
"description": "",
"author": "",
"license": "MIT",
"private": true,
"workspaces": [
"api",
"app"
],
"scripts": {
"up": "rm -rf logs && pm2 start ecosystem.config.js",
"down": "pm2 delete ecosystem.config.js",
"restart": "npm run down && npm run up",
"log": "pm2 log",
"list": "pm2 ls",
"codegen": "npm run codegen -w api && npm run codegen -w app",
"lint": "ultra _lint",
"_lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:ts --workspaces --if-present",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint ."
},
"ultra": {
"concurrent": [
"_lint"
]
},
"devDependencies": {
"@graphql-codegen/cli": "^2.3.0",
"@graphql-codegen/schema-ast": "^2.4.0",
"@graphql-codegen/typescript": "^2.4.1",
"@graphql-codegen/typescript-operations": "^2.2.2",
"@graphql-codegen/typescript-resolvers": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"graphql": "^16.2.0",
"pm2": "^5.1.2",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"typescript": "^4.5.4",
"ultra-runner": "^3.10.5"
}
}