-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.79 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
{
"name": "typepi",
"version": "0.0.0",
"license": "Apache-2.0",
"scripts": {
"build": "nx build",
"build-all": "nx run-many --parallel=6 --nx-bail --target=build --all",
"lint": "nx lint",
"lint-all": "nx run-many --parallel=6 --nx-bail --target=lint --all",
"test": "nx test",
"test-all": "nx run-many --parallel=6 --nx-bail --target=test --all",
"generate": "nx build generator && ./dist/packages/generator/bin/generate.js openapi -i ./packages/generator/testdata/* -o ./tmp/generated",
"generate-all": "nx run-many --parallel=6 --nx-bail --target=generate --all",
"smoketest": "yarn lint-all && yarn test-all && yarn build-all && yarn generate-all",
"nx": "nx"
},
"private": true,
"contributors": [
"Johan Öbrink <[email protected]"
],
"repository": {
"type": "git",
"url": "https://github.com/seb-neo/typepi.git"
},
"homepage": "https://github.com/seb-neo/typepi#readme",
"bugs": {
"url": "https://github.com/seb-neo/typepi/issues"
},
"dependencies": {
"prettier": "2.8.4",
"tslib": "2.6.2",
"yaml": "2.3.2"
},
"devDependencies": {
"@nx/eslint-plugin": "16.8.1",
"@nx/jest": "16.8.1",
"@nx/js": "16.8.1",
"@nx/linter": "16.8.1",
"@nx/node": "16.8.1",
"@nx/workspace": "16.8.1",
"@types/jest": "29.5.4",
"@types/node": "18.17.16",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"nx": "16.8.1",
"nx-cloud": "16.4.0",
"semver": "7.5.4",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"resolutions": {
"json5": ">=2.2.2"
},
"workspaces": [
"packages/**"
]
}