-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "api-stub-server",
"version": "0.1.34",
"description": "Use this to stub REST api when testing",
"repository": {
"type": "git",
"url": "[email protected]:markhigham/api-stub-server"
},
"main": "dist/index.js",
"bin": {
"api-stub-server": "dist/bin/api-stub-server.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"debug": "LOG_LEVEL=debug nodemon dist/bin/api-stub-server.js -- -s",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier . --write",
"start": "node dist/index.js"
},
"author": "Mark Higham",
"license": "ISC",
"dependencies": {
"angular": "^1.6.10",
"angular-local-storage": "^0.7.1",
"body-parser": "^1.20.2",
"clone": "^2.1.2",
"express": "^4.18.3",
"express-bearer-token": "^2.4.0",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"moment": "^2.30.1",
"route-parser": "0.0.5",
"source-map-support": "^0.5.21",
"uuid": "^9.0.1",
"winston": "^3.12.0"
},
"devDependencies": {
"@types/clone": "^2.1.4",
"@types/express": "^4.17.21",
"@types/node": "^20.11.28",
"@types/route-parser": "^0.1.7",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
}
}