-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.83 KB
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
{
"name": "api-machine",
"version": "1.2.1",
"description": "api-machine",
"private": "true",
"typescript-template": {
"base": "1.0.1",
"jasmine": "1.0.0",
"library": "1.0.0"
},
"scripts": {
"build": "tsc",
"start": "ts-node examples/index",
"test": "npm run lint && npm run build && nyc npm run test:run",
"test:run": "jasmine --config=jasmine.json",
"test:dev": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.dev.json",
"doc": "typedoc --out docs/typedoc src",
"format": "prettier-eslint --write **/*.*",
"lint": "eslint .",
"lint:prod": "npm run lint -- --config=.eslintrc.prod.json",
"script": "ts-node scripts",
"publish": "npm run script -- publish"
},
"dependencies": {
"auto-oas": "^1.3.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"swagger-ui-express": "^5.0.1",
"valsan": "^2.3.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jasmine": "^5.1.4",
"@types/node": "^18.19.39",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"eslint": "^8.57.0",
"jasmine": "^5.1.0",
"nyc": "^17.0.0",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "^8.0.1",
"ts-appconfig": "^1.2.0",
"ts-jasmine-spies": "^1.0.0",
"ts-node": "^10.9.2",
"ts-packager": "^1.1.0",
"ts-script": "^1.0.0",
"ts-tiny-log": "^1.1.1",
"typedoc": "^0.26.1",
"typescript": "~5.4.2"
},
"peerDependencies": {
"valsan": "^2.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StatelessStudio/api-machine.git"
},
"author": "StatelessStudio",
"license": "MIT",
"bugs": {
"url": "https://github.com/StatelessStudio/api-machine/issues"
},
"homepage": "https://github.com/StatelessStudio/api-machine#readme",
"keywords": []
}