This repository has been archived by the owner on Jul 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 363
/
package.json
66 lines (66 loc) · 1.88 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
60
61
62
63
64
65
66
{
"name": "gitgraph.js-monorepo",
"private": true,
"version": "2.0.0-monorepo",
"author": "Nicolas Carlo <[email protected]>",
"description": "A JavaScript library to draw pretty git graphs",
"contributors": [
{
"name": "Fabien Bernard",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/nicoespeon/gitgraph.js"
},
"license": "MIT",
"keywords": [
"git",
"graph",
"javascript"
],
"scripts": {
"lerna": "lerna",
"build": "lerna run build --scope=@gitgraph/{core,react,js,node} --stream",
"watch": "lerna run watch --stream",
"storybook": "sleep 3 && lerna run storybook --stream",
"develop": "concurrently npm:watch npm:storybook",
"website": "lerna run start --scope=@gitgraph/website --stream",
"deploy:website": "lerna run deploy --scope=@gitgraph/website --stream",
"lint": "eslint packages/**/src/**/*.{ts,tsx}",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run build",
"test": "jest",
"test:e2e": "lerna run test:e2e --stream",
"test:ci": "CI=true npm run test && npm run test:e2e",
"clean": "lerna clean",
"all-contributors": "all-contributors"
},
"devDependencies": {
"@types/jest": "23.1.4",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"all-contributors-cli": "6.16.0",
"concurrently": "4.1.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"husky": "1.1.2",
"jest": "23.3.0",
"lerna": "3.13.1",
"prettier": "^2.2.0",
"pretty-quick": "^3.1.0",
"ts-jest": "23.0.0",
"typescript": "3.5.1"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix && pretty-quick --staged"
}
}
}