-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.1 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
53
54
55
56
57
58
59
60
61
62
{
"name": "webhooks-server",
"version": "0.0.1",
"author": "Manuel Wegria",
"license": "MIT",
"description": "The Abstract Connection Webhooks Server",
"private": false,
"keywords": [
"devops",
"webhooks",
"express",
"mongodb",
"react",
"websockets"
],
"scripts": {
"install:backend": "cd backend && npm install",
"install:frontend": "cd frontend && npm install",
"install": "npm-run-all install:backend install:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"build": "npm-run-all build:backend build:frontend",
"lint:backend": "cd backend && npm run lint",
"lint:frontend": "cd frontend && npm run lint",
"lint": "npm-run-all lint:backend lint:frontend",
"lint:fix:backend": "cd backend && npm run lint:fix",
"lint:fix:frontend": "cd frontend && npm run lint:fix",
"lint:fix": "npm-run-all lint:fix:backend lint:fix:frontend",
"dev:backend": "cd backend && IS_DEV=true npm run dev",
"dev:frontend": "cd frontend && IS_DEV=true npm run dev",
"dev": "npm-run-all --parallel dev:backend dev:frontend",
"start": "npm run build && node backend/dist/server.js"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@theabstractconnection/eslint-config": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-simple-import-sort": "^5.0.2",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.3",
"lint-staged": "^10.1.2",
"prettier": "^2.0.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}