-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
83 lines (83 loc) · 2.58 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "code-dependency",
"version": "0.1.0",
"private": true,
"description": "A work efficiency tool for visualizing code dependencies on a browser.",
"repository": "https://github.com/Himenon/code-dependency.git",
"license": "MIT",
"author": "Himenon",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean",
"clean:all": "yarn run clean:lib && yarn run clean:cache && lerna run clean",
"commit": "npx git-cz",
"cruiser": "lerna run cruiser",
"develop": "yarn run build:lib --verbose -w",
"format": "yarn lint --fix && prettier --write \"**/*.{ts,tsx,js,jsx,json,yml,yaml,html,scss}\"",
"generate:sample": "./bin/generate-sample.sh",
"initialize": "run-s bootstrap clean:all setup build:lib",
"lint": "eslint -c ./.eslintrc.js 'packages/**/*.{ts,tsx}'",
"lint:fix": "yarn lint --fix",
"test": "lerna run test",
"test:ci": "yarn test:libcheck && lerna run test:ci",
"test:libcheck": "libcheck --input yarn.lock --pattern 'dependency-cruiser' --test",
"version_up": "lerna version --yes"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/enhanced-resolve": "^3.0.6",
"@types/jest": "^24.0.25",
"@types/node": "^13.7.0",
"@types/recursive-readdir": "^2.2.0",
"@types/resolve": "^1.14.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"cross-env": "^6.0.3",
"dependency-cruiser": "7.2.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"generate-changelog": "^1.8.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"json-stringify-pretty-compact": "^2.0.0",
"lerna": "^3.20.1",
"libcheck": "^1.4.0",
"lint-staged": "^9.5.0",
"npm-normalize-package-bin": "^1.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"sort-package-json": "^1.32.2",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"type-fest": "^0.8.1",
"typescript": "^3.7.4"
},
"peerDependencies": {
"graceful-fs": "^4.2.3"
},
"publishConfig": {
"access": "public"
}
}