-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "@pubnub/tomato",
"version": "1.13.0",
"description": "CLI mock server for contract testing",
"main": "dist/index.js",
"type": "module",
"types": "types/context.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc-watch",
"test": "npm run lint",
"lint": "npx eslint src/**/*.ts"
},
"bin": {
"tomato": "./dist/index.js"
},
"author": "",
"license": "UNLICENSED",
"devDependencies": {
"@types/lodash.isequal": "^4.5.6",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3"
},
"dependencies": {
"@fastify/compress": "^6.2.0",
"@fastify/cors": "^8.2.0",
"@fastify/multipart": "^7.4.0",
"@stoplight/prism-cli": "^4.10.3",
"@stoplight/prism-http": "^4.10.3",
"ansi-colors": "^4.1.3",
"chokidar": "^3.5.3",
"deepmerge-ts": "^4.2.2",
"fast-glob": "^3.2.12",
"fastify": "^4.5.3",
"fastify-plugin": "^4.2.1",
"lodash.isequal": "^4.5.0",
"reflect-metadata": "^0.1.13",
"serialize-error": "^11.0.0",
"toml": "^3.0.0",
"tsyringe": "^4.7.0",
"typescript": "^4.8.3",
"yaml": "^2.1.1",
"yargs": "^17.6.0"
},
"prettier": {
"semi": false,
"printWidth": 120,
"singleQuote": true
}
}