-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 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
38
39
40
41
42
{
"name": "@help-ua/root",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"start:backend": "pnpm --filter=@help-ua/backend start",
"dev:backend": "node-dev packages/backend/src/index.ts",
"lint": "eslint '**/*.ts' --max-warnings 0",
"migrate:deploy": "pnpm --filter=@help-ua/backend migrate:deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zero-plus-x/HelpUA.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zero-plus-x/HelpUA/issues"
},
"homepage": "https://github.com/zero-plus-x/HelpUA#readme",
"dependencies": {
"esbuild": "^0.14.25",
"esbuild-register": "^3.3.2",
"eslint": "^8.11.0",
"node-dev": "^7.2.0",
"prettier": "^2.5.1",
"typescript": "^4.6.2"
},
"devDependencies": {
"@types/node": "^17.0.21"
},
"prettier": {
"singleQuote": true,
"semi": true,
"printWidth": 120,
"trailingComma": "none",
"arrowParens": "avoid"
}
}