-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "todo-app-sample",
"version": "1.0.0",
"description": "A sample TODO notes app using React and Node in a monorepo fashion",
"scripts": {
"postinstall": "lerna bootstrap",
"prettier": "prettier --write '**/*.(ts|json|vue|scss)'",
"lernaUpdate": "lerna exec -- npm update",
"heroku-postbuild": ".ops/heroku-postbuild.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahatron/todo-app-sample.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bahatron/todo-app-sample/issues"
},
"homepage": "https://github.com/bahatron/todo-app-sample#readme",
"dependencies": {
"@vue/cli": "^4.5.15",
"@vue/cli-service-global": "^4.5.15",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"**/*.(ts|json|vue|scss)": [
"prettier --write",
"git add"
]
}
}