-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "final-project_tpl",
"version": "0.1.0",
"description": "",
"main": "index.js",
"private": true,
"author": "Yurii Pakhariev",
"license": "ISC",
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"init-project": "npm i && npm i --workspaces",
"build": "npm run build --workspaces",
"start-prod": "node ./backend/server/index.js",
"start": "concurrently \"npm run start --workspace=frontend\" \"npm run dev --workspace=backend\"",
"prepare": "husky install",
"lint": "eslint . --ext .ts,.tsx",
"prettier": "prettier --write .",
"ts-check": "npm run typescript --workspaces"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"concurrently": "^5.1.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"prettier": "3.0.3"
},
"dependencies": {
"date-fns": "^2.30.0",
"lint-staged": "^14.0.1"
}
}