forked from verdaccio/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.45 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
{
"name": "@verdaccio/monorepo",
"private": true,
"author": "Sergio Herrera <[email protected]>",
"license": "MIT",
"workspaces": [
"core/*",
"plugins/*",
"tools/*"
],
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/node": "7.16.0",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/plugin-proposal-decorators": "7.16.4",
"@babel/plugin-proposal-export-namespace-from": "7.16.0",
"@babel/plugin-proposal-function-sent": "7.16.0",
"@babel/plugin-proposal-json-strings": "7.16.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.16.0",
"@babel/plugin-proposal-numeric-separator": "7.16.0",
"@babel/plugin-proposal-object-rest-spread": "7.16.0",
"@babel/plugin-proposal-optional-chaining": "7.16.0",
"@babel/plugin-proposal-throw-expressions": "7.16.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-async-to-generator": "7.16.0",
"@babel/plugin-transform-classes": "7.16.0",
"@babel/plugin-transform-runtime": "7.16.4",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@babel/register": "7.16.0",
"@babel/runtime": "7.16.3",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@verdaccio/types": "workspace:*",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-plugin-emotion": "11.0.0",
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.15.0",
"@changesets/get-dependents-graph": "^1.2.0",
"@types/express": "4.17.13",
"@types/http-errors": "1.8.1",
"@types/jest": "26.0.24",
"@types/lodash": "4.14.177",
"@types/memory-fs": "0.3.3",
"@types/node": "14.17.34",
"@types/request": "2.48.7",
"codecov": "3.7.1",
"cross-env": "7.0.3",
"rimraf": "3.0.2",
"eslint": "7.32.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "24.7.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-verdaccio": "9.6.1",
"husky": "3.1.0",
"update-ts-references": "2.4.1",
"jest": "26.6.3",
"lint-staged": "9.5.0",
"npm-run-all": "4.1.5",
"lodash": "4.17.21",
"prettier": "2.5.0",
"snyk": "1.756.0",
"typescript": "3.9.10"
},
"scripts": {
"changeset": "changeset",
"changeset:check": "changeset status --since-master",
"clean": "pnpm recursive run clean",
"build": "pnpm recursive run build",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"ci:version:changeset": "changeset version",
"ci:version": "run-s ci:version:changeset ci:version:install",
"ci:version:install": "pnpm install --frozen-lockfile=false",
"ci:publish": "changeset publish",
"test": "pnpm recursive test",
"ts:ref": "update-ts-references --discardComments"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,yml,yaml,md}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"version": "0.0.0"
}