-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "demo",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"start:repo": "cd packages/repo && npm start",
"start:backend": "cd packages/backend && npm start",
"start:frontend": "cd packages/frontend && npm start",
"start": "concurrently npm:start:*",
"build:repo": "cd packages/repo && npm run build",
"db:init:local": "cd packages/repo && npm run db:init:local",
"deploy:backend": "npm run build:repo && cd packages/backend && npm run deploy:dev",
"deploy:backend:prod": "npm run build:repo && cd packages/backend && npm run deploy:prod",
"deploy:infra": "cd packages/infra && cdk deploy",
"prettier:base": "./node_modules/.bin/prettier --config .prettierrc --write",
"prettier": "npm run prettier:base -- '**/*.{js,ts,tsx,css,json,yaml,yml,md}'",
"test": "echo ok"
},
"author": "",
"license": "MIT",
"workspaces": [
"packages/*"
],
"dependencies": {
"@jetkit/cdk": "^0.0.31",
"concurrently": "^5.3.0",
"typeorm": "^0.2.32"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.23.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{*.{ts,js},!(node*)**/*.{ts,tsx,js,jsx}}": [
"eslint --fix",
"prettier --write"
]
}
}