forked from FlorianRappl/kras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3 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
{
"name": "kras",
"version": "0.15.3",
"description": "Efficient server proxying and mocking in Node.js.",
"main": "dist/server/index.js",
"types": "dist/server/index.d.ts",
"bin": {
"kras": "dist/cli.js"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/FlorianRappl/kras.git"
},
"bugs": {
"url": "https://github.com/FlorianRappl/kras/issues"
},
"scripts": {
"test:unit": "cross-env NODE_ENV=test jest src",
"test:watch": "npm run test:unit -- --watch",
"test": "npm run test:unit",
"start": "ts-node src/cli.ts",
"watch": "nodemon --exec ts-node -- src/cli.ts",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prettier": "prettier --config prettier.config.js --write 'src/**/*.ts'",
"build:server:decl": "dets --imports node express --files src/server/index.ts --types src/server/index.ts --out dist/server/index.d.ts",
"build:server:code": "ncc build src/server/index.ts --external bufferutil --external utf-8-validate --out dist/server",
"build:server": "npm run build:server:code && npm run build:server:decl",
"build:utility": "ncc build utils/index.ts --out utils",
"build:cli": "tsc --project tsconfig.cli.json",
"build": "npm run build:cli && npm run build:utility && npm run build:server"
},
"author": "Florian Rappl <[email protected]>",
"contributors": [],
"license": "MIT",
"dependencies": {
"kras-management-portal": "^0.13.0",
"yargs": "^15.4.1"
},
"peerDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"peerDependenciesMeta": {
"bufferutil": {
"optional": true
},
"utf-8-validate": {
"optional": true
}
},
"devDependencies": {
"@types/accept-language-parser": "^1.5.3",
"@types/body-parser": "^1.19.2",
"@types/chokidar": "^2.1.3",
"@types/cookie": "^0.4.1",
"@types/express": "^4.17.17",
"@types/express-ws": "^3.0.1",
"@types/faker": "^5.5.9",
"@types/form-data": "^2.5.0",
"@types/jest": "^26.0.24",
"@types/multer": "^1.4.7",
"@types/request": "^2.48.8",
"@types/send": "^0.14.7",
"@types/uuid": "^8.3.4",
"@types/ws": "^7.4.7",
"@types/yargs": "^15.0.15",
"@zeit/ncc": "^0.22.3",
"accept-language-parser": "^1.5.0",
"babel-jest": "^26.6.3",
"body-parser": "^1.20.2",
"chalk": "^3.0.0",
"chokidar": "^3.5.3",
"cookie": "^0.4.2",
"cross-env": "^7.0.3",
"dets": "^0.10.2",
"enzyme-to-json": "^3.6.2",
"express": "^4.18.2",
"express-ws": "^4.0.0",
"faker": "^5.5.3",
"form-data": "^3.0.0",
"jest": "^26.6.3",
"mixin-deep": "^2.0.1",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"request": "^2.88.2",
"send": "^0.17.2",
"ts-jest": "^26.5.6",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.9.5",
"uuid": "^8.3.2",
"ws": "^7.5.9"
}
}