-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.24 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.24 KB
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
{
"name": "inter-id",
"version": "1.0.0",
"description": "Inter ID Gamification Project",
"main": "index.js",
"author": "Artun Çolak <artuncolak97@gmail.com>, Barış Talha Güneş <baristalhagunes@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"admin-backend",
"admin-client",
"client"
],
"scripts": {
"client-start": "yarn workspace client start",
"client-build": "yarn workspace client build",
"admin-client-start": "yarn workspace admin-client start",
"admin-client-build": "yarn workspace admin-client build",
"admin-backend-dev": "yarn workspace admin-backend dev",
"admin-backend-start": "yarn workspace admin-backend start",
"admin-backend-build": "yarn workspace admin-backend build",
"postinstall": "husky install",
"lint": "eslint --fix ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1"
}
}