forked from labd/commercetools-node-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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
{
"version": "0.5.19",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"server": "nodemon --watch src --exec 'node -r esbuild-register' src/server.ts",
"generate": "node -r esbuild-register generate-validation.ts",
"build": "tsdx build --target=node",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@labdigital/commercetools-mock",
"author": "Michael van Tellingen",
"module": "dist/commercetools--mock.esm.js",
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@types/basic-auth": "^1.1.3",
"@types/deep-equal": "^1.0.1",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.4",
"esbuild-register": "^3.3.1",
"got": "^11.8.3",
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@commercetools/platform-sdk": "2.4.1",
"ajv": "^8.8.2",
"ajv-formats": "^2.1.1",
"basic-auth": "^2.0.1",
"deep-equal": "^2.0.5",
"express": "^4.17.2",
"morgan": "^1.10.0",
"nock": "^13.2.1",
"perplex": "^0.11.0",
"pratt": "^0.7.0",
"supertest": "^6.1.6"
}
}