forked from achanda101/dhmit-site-2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 847 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
31
32
{
"name": "howtomakespace",
"version": "0.0.1",
"repository": "https://github.com/infiniteplaces/dhmit-site-2020.git",
"author": "Office Romance <info@romanceoffice.com>",
"license": "MIT",
"private": true,
"scripts": {
"start:studio": "yarn workspace studio start",
"test:studio": "yarn workspace studio test",
"deploy:studio": "yarn workspace studio deploy",
"build": "yarn workspace web build",
"start": "yarn workspace web start"
},
"workspaces": [
"studio",
"web"
],
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
}
}