-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 4.56 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "dependents-view",
"version": "0.1.0",
"homepage": "https://himenon.github.io/dependents-view/",
"bugs": "https://github.com/Himenon/dependents-view/issues",
"repository": {
"type": "git",
"url": "git@github.com:Himenon/dependents-view.git"
},
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production ts-node -P ./scripts/tsconfig.cli.json ./scripts/build.ts",
"commit": "npx git-cz",
"depcruise": "depcruise --validate .dependency-cruiser.js src",
"depcruise:html": "depcruise --validate --output-type err-html -f dependency-report.html .dependency-cruiser.js src",
"deploy": "pnpm build && pnpm publish:site",
"extract:package-json:org": "ts-node -P ./scripts/tsconfig.cli.json ./scripts/extractPackageJsonFromOrg.ts",
"extract:package-json:user": "ts-node -P ./scripts/tsconfig.cli.json ./scripts/extractPackageJsonFromUser.ts",
"format": "pnpm lint --fix && prettier --write \"**/*.{ts,tsx,js,jsx,json,yml,yaml,html,md,scss}\"",
"lint": "eslint -c ./.eslintrc.js 'src/**/*.{ts,tsx}'",
"lint:fix": "pnpm lint --fix",
"make:dependency:data": "ts-node -P ./scripts/tsconfig.cli.json ./scripts/makeDependencyData.ts",
"make:fixture": "ts-node -P ./scripts/tsconfig.cli.json ./scripts/makeMockDependencyData.ts",
"make:ranking:data": "ts-node -P ./scripts/tsconfig.cli.json ./scripts/makePackageRanking.ts",
"prettier": "prettier --config .prettierrc --write src/**/*",
"publish:site": "ts-node -P ./scripts/tsconfig.cli.json ./scripts/publish.ts",
"serve": "serve dist",
"start": "cross-env NODE_ENV=development ts-node -P ./scripts/tsconfig.cli.json ./scripts/develop.ts",
"test": "pnpm test:jest && pnpm depcruise",
"test:jest": "jest -c ./jest.config.json",
"test:jest:watch": "pnpm test:jest --watch",
"version_up": "lerna version --yes"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@primer/components": "^15.1.1",
"@primer/css": "^13.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@octokit/rest": "^16.35.0",
"@types/clean-webpack-plugin": "^0.1.3",
"@types/gh-pages": "^2.0.1",
"@types/html-webpack-plugin": "^3.2.1",
"@types/jest": "^24.0.23",
"@types/mini-css-extract-plugin": "^0.8.0",
"@types/p-limit": "^2.2.0",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-router-dom": "^5.1.2",
"@types/webpack": "^4.39.8",
"@types/webpack-dev-server": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"autoprefixer": "^9.7.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.0.3",
"conventional-changelog-angular-all": "^1.7.0",
"core-js": "3",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"dependency-cruiser": "^5.3.2",
"eslint": "^6.6.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"fibers": "^4.0.2",
"fork-ts-checker-notifier-webpack-plugin": "^1.0.2",
"fork-ts-checker-webpack-plugin": "^3.1.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lerna": "^3.18.4",
"lint-staged": "^9.4.3",
"mini-css-extract-plugin": "^0.8.0",
"native-url": "^0.2.3",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"p-limit": "^2.2.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"progress-bar-webpack-plugin": "^1.12.1",
"regenerator-runtime": "^0.13.3",
"sass": "^1.23.3",
"sass-loader": "^8.0.0",
"serve": "^11.2.0",
"sort-package-json": "^1.23.1",
"style-loader": "^1.0.0",
"styled-components": "^4.4.1",
"terser-webpack-plugin": "^2.2.1",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.2",
"type-fest": "^0.8.1",
"typescript": "^3.7.2",
"webpack": "4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-notifier": "^1.8.0"
},
"engines": {
"npm": "forbidden, use pnpm",
"pnpm": ">=6",
"yarn": "forbidden, use pnpm"
}
}