-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 3.15 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "trem-okr",
"version": "1.0.0",
"description": "TREM-OKR is a platform for Tracking, Reporting, Exploring and Managing [OKRs](https://en.wikipedia.org/wiki/OKR).",
"author": "Hudson Oliveira",
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"build": "npm-run-all --parallel build:*",
"lint": "vue-cli-service lint",
"build:client": "vue-cli-service build",
"build:server": "tsc -p tsconfig.server.json",
"dev:client": "vue-cli-service serve",
"dev:server": "nodemon --config ./nodemon.config.json",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"main": "./out/server/index.js",
"dependencies": {
"body-parser": "^1.19.0",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.1.1",
"monk": "^7.3.0",
"morgan": "^1.10.0",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.2",
"vue-router": "^3.2.0",
"vuetify": "^2.2.11",
"vuex": "^3.5.1"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/cors": "^2.8.6",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.17.7",
"@types/joi": "^14.3.4",
"@types/morgan": "^1.9.1",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-router": "~4.4.0",
"@vue/cli-plugin-typescript": "~4.4.0",
"@vue/cli-plugin-vuex": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^5.0.2",
"eslint": "^6.7.2",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^9.5.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"ts-node": "^8.8.2",
"typescript": "~3.9.3",
"vue-cli-plugin-vuetify": "~2.0.7",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.3.0"
},
"bugs": {
"url": "https://github.com/hdpoliveira/trem-okr/issues"
},
"homepage": "https://github.com/hdpoliveira/trem-okr#readme",
"keywords": [
"okr",
"management",
"project"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hdpoliveira/trem-okr.git"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}