-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
30 lines (30 loc) · 896 Bytes
/
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
{
"name": "build-your-own-react-workshop",
"version": "1.0.0",
"description": "The workspace setup for the build your own react workshop!",
"scripts": {
"start": "npm run git-branch && cd todo-app && npm start",
"postinstall": "cd todo-app && npm ci",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\"",
"git-branch": "node ./gitBranch.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/babbel/build-your-own-react-workshop.js.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/babbel/build-your-own-react-workshop.js/issues"
},
"homepage": "https://github.com/babbel/build-your-own-react-workshop.js#readme",
"workspaces": [
"packages/my-own-react"
],
"devDependencies": {
"prettier": "^2.7.1"
},
"dependencies": {
"husky": "^8.0.2"
}
}