-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 3.04 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
{
"name": "pvm",
"private": true,
"description": "Featured, powerful and compliant package version/release manager",
"engines": {
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"packages/*",
"src/tokens/*",
"src/plugins/*",
"src/libs/*",
"src/types/*",
"tools/*"
]
},
"scripts": {
"test": "jest --verbose",
"build": "tsc -p tsconfig.json -d",
"watch": "tsc -p tsconfig.json -d --watch --sourceMap",
"build-docs": "bash -c 'scripts/build-doc.sh'",
"check-ts-strict": "tsc -p tsconfig.strict.json -d --noEmit",
"watch-ts-strict": "tsc -p tsconfig.strict.json -d --watch --noEmit",
"lint": "eslint --ext .js,.ts packages test",
"generate-config-schema": "cross-env NODE_OPTIONS=\\\"--unhandled-rejections=strict\\\" npm exec typescript-json-schema -- --out packages/pvm-types/lib/config-schema.json packages/pvm-types/lib/config-schema.ts Config && npm exec typescript-json-schema -- --out packages/pvm-types/lib/env-schema.json packages/pvm-types/lib/env-schema.ts Env",
"check-no-staged-changes": "git diff --name-only --exit-code",
"lint:config-schema": "bash -c 'scripts/check-config-sync.sh'",
"whoami": "node ./user.js"
},
"repository": "[email protected]:Tinkoff/pvm.git",
"author": "Andrey Rublev <[email protected]>",
"license": "Apache-2.0",
"files": [],
"devDependencies": {
"@adobe/jsonschema2md": "^4.0.0",
"@iarna/toml": "^2.2.3",
"@types/cli-table": "^0.3.0",
"@types/express": "^4.17.13",
"@types/git-url-parse": "^9.0.0",
"@types/jest": "26",
"@types/micromatch": "4.0.1",
"@types/node": "^14.18.0",
"@types/node-fetch": "^3.0.3",
"@types/nunjucks": "^3.1.1",
"@types/semver": "^7.2.0",
"@types/yargs": "^15.0.10",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.20.0",
"@tinkoff-monorepo/depscheck": "^1.8.21",
"babel-polyfill": "^6.26.0",
"bench": "^0.3.6",
"body-parser": "^1.18.3",
"brace": "^0.11.1",
"configstore": "^5.0.0",
"cross-env": "^7.0.3",
"date-fns": "^2.7.0",
"dedent": "^0.7.0",
"dotenv": "^10.0.0",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-pvm": "file:./tools/eslint-plugin",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.16.4",
"fkill": "^7.0.0",
"fs-extra": "^9.0.1",
"glob": "^7.2.0",
"jest": "26.6.3",
"json": "^9.0.6",
"nock": "^13.0.4",
"node-fetch": "^3.1.0",
"got": "^11.8.5",
"parse-md": "^2.0.4",
"prismjs": "^1.16.0",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"sprout-data": "^1.3.0",
"ts-jest": "^26.4.4",
"typescript": "^4.7.4",
"typescript-json-schema": "^0.51.0",
"unified": "^10.1.2",
"verdaccio": "^5.1.6",
"get-port": "^5.1.1",
"handlebars": "^4.7.7",
"yargs": "^15.4.1"
}
}