forked from GaiAma/Coding4GaiAma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"private": true,
"name": "@gaiama/coding4gaiama",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:GaiAma/Coding4GaiAma.git",
"author": "CanRau <[email protected]> (canrau.com)",
"license": "MIT",
"workspaces": [
"packages/*",
"sites/*"
],
"resolutions": {
"sharp": "^0.25.1"
},
"scripts": {
"plop": "plop",
"lerna": "lerna",
"netlify": "netlify",
"packages:build": "lerna run build",
"packages:test": "lerna run test",
"postinstall": "yarn packages:build && yarn packages:test",
"ci": "GAIAMA_ENV=\"production\" yarn workspace @gaiama/coding4.gaiama.org build:live"
},
"husky": {
"hooks": {
"pre-push": "yarn packages:test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.2.3",
"lerna": "^3.20.2",
"netlify-cli": "2.36.0",
"plop": "^2.5.4",
"plop-pack-gatsby": "1.0.1",
"prettier": "^1.19.1",
"user-meta": "^1.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}