-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
59 lines (59 loc) · 2.44 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
56
57
58
59
{
"devDependencies": {
"babel-preset-cozy-app": "1.12.0",
"babel-preset-react": "6.24.1",
"commitlint-config-cozy": "0.7.9",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.7",
"eslint": "5.16.0",
"eslint-config-cozy-app": "1.6.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "15.12.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.25.1",
"node-gyp": "10.0.1",
"husky": "0.14.3",
"jest": "24.9.0",
"jest-environment-jsdom-sixteen": "1.0.3",
"jest-fetch-mock": "3.0.3",
"jsdoc-to-markdown": "6.0.1",
"lerna": "4.0.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"redux-mock-store": "1.5.4",
"remark-cli": "9.0.0",
"typedoc": "0.22.13",
"typedoc-plugin-markdown": "3.11.14",
"typedoc-plugin-rename-defaults": "0.4.0",
"typescript": "4.5.5",
"unist-util-find": "1.0.2",
"unist-util-visit": "3.1.0",
"whatwg-fetch": "3.5.0"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint 'packages/*/src/**/*.{js,jsx}' 'packages/*/examples/**/*.{js,jsx}'",
"test": "jest",
"watch": "lerna run watch --parallel",
"build": "lerna run build --parallel",
"commitmsg": "commitlint -e $GIT_PARAMS",
"clean": "rm -rf packages/*/dist",
"cleanTypes": "rm -rf packages/*/types",
"cleanDocsApi": "rm -rf docs/api",
"docs": "yarn cleanDocsApi && node scripts/docs.js && yarn docs:cozy-client && yarn docs:cozy-pouch-link",
"docs:cozy-client": "yarn typedoc --readme none --hideInPageTOC --excludeExternals --excludePrivate --tsconfig packages/cozy-client/tsconfig.json packages/cozy-client/src/index.js --out docs/api/cozy-client --gitRevision master && yarn remark -o -u ./scripts/strip-typedoc-headings.mjs docs/api/cozy-client/",
"docs:cozy-pouch-link": "yarn typedoc --readme none --hideInPageTOC --excludeExternals --excludePrivate --tsconfig packages/cozy-pouch-link/tsconfig.json packages/cozy-pouch-link/src/index.js --out docs/api/cozy-pouch-link --gitRevision master && yarn remark -o -u ./scripts/strip-typedoc-headings.mjs docs/api/cozy-pouch-link/",
"beforecommit": "yarn build && yarn docs && yarn types",
"types": "yarn cleanTypes && cd packages/cozy-client && yarn typecheck && cd ../cozy-pouch-link && yarn typecheck"
},
"commitlint": {
"extends": [
"cozy"
]
}
}