forked from cozy/cozy-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.82 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
{
"devDependencies": {
"babel-preset-cozy-app": "1.11.0",
"babel-preset-react": "6.24.1",
"commitlint-config-cozy": "0.6.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "5.16.0",
"eslint-config-cozy-app": "1.6.0",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsdoc": "^15.11.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "7.25.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",
"lerna": "3.22.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"redux-mock-store": "1.5.4",
"remark-cli": "^9.0.0",
"typedoc": "^0.21.0",
"typedoc-plugin-markdown": "3.10.4",
"typedoc-plugin-rename-defaults": "^0.1.0",
"unist-util-find": "^1.0.2",
"unist-util-visit": "^3.1.0",
"whatwg-fetch": "^3.0.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",
"docs": "node scripts/docs.js && yarn docs:cozy-client",
"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/",
"types": "cd packages/cozy-client && yarn typecheck"
},
"commitlint": {
"extends": [
"cozy"
]
}
}