-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "cozy-libs",
"description": "Sharing Helpers for Cozy Application Development",
"author": "Cozy",
"license": "MIT",
"homepage": "https://github.com/cozy/cozy-libs#readme",
"private": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/cozy/cozy-libs.git"
},
"bugs": {
"url": "https://github.com/cozy/cozy-libs/issues"
},
"scripts": {
"build:doc:react": "styleguidist build --config docs/styleguidist.config.js",
"deploy:doc": "git-directory-deploy --directory docs/build/ --branch gh-pages",
"lint": "eslint --ext js,jsx,ts,tsx .",
"lint:md": "remark . -o",
"test": "lerna run --concurrency 1 --ignore cozy-procedures test",
"build": "lerna run --scope cozy-device-helper build && lerna run --parallel --ignore cozy-device-helper build",
"watch:doc:react": "styleguidist server --config docs/styleguidist.config.js",
"check-constraints": "node scripts/check-packages-constraints.js"
},
"devDependencies": {
"@babel/cli": "7.16.8",
"@babel/core": "7.16.12",
"@babel/runtime": "7.18.6",
"babel-loader": "8.2.3",
"babel-preset-cozy-app": "^1.5.0",
"css-loader": "2.1.1",
"git-directory-deploy": "1.5.1",
"husky": "1.3.1",
"lerna": "5.0.0",
"mini-css-extract-plugin": "0.5.0",
"react-styleguidist": "9.1.16",
"remark-cli": "9.0.0",
"stylus": "0.57.0",
"stylus-loader": "3.0.2",
"webpack": "4.41.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"./packages/commitlint-config-cozy"
]
},
"workspaces": [
"packages/*"
]
}