-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.1 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
{
"name": "@becomes/cms-shim",
"version": "1.0.0",
"description": "",
"main": "./main.js",
"types": "./main.d.ts",
"scripts": {
"start": "node main.js",
"start:local": "node main.js",
"dev": "nodemon src/main.ts",
"build:ts": "tsc -p .",
"typedoc": "typedoc",
"bundle": "npm-tool --bundle",
"link": "npm-tool --link",
"link:sudo": "npm-tool --link --sudo",
"unlink": "npm-tool --unlink",
"unlink:sudo": "npm-tool --unlink --sudo",
"pack:dist": "npm-tool --pack",
"create:image": "npm-tool --create-image",
"create:dev:image": "npm-tool --create-dev-image",
"test": "mocha -r ts-node/register test/integration/*.test.ts --recursive --exit",
"test:active": "mocha -r ts-node/register test/integration/*.active.test.ts --recursive --exit",
"test:unit": "mocha -r ts-node/register test/unit/*.test.ts --recursive --exit",
"test:active:unit": "mocha -r ts-node/register test/unit/*.active.test.ts --recursive --exit",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/becomesco/cms-shim.git"
},
"keywords": [],
"author": "Becomes",
"license": "MIT",
"bugs": {
"url": "https://github.com/becomesco/cms-shim/issues"
},
"dependencies": {
"@banez/child_process": "^1.0.3",
"@banez/docker": "^1.1.0",
"@becomes/purple-cheetah": "^3.7.4",
"@becomes/purple-cheetah-mod-jwt": "^1.1.0",
"@becomes/purple-cheetah-mod-socket": "^1.1.0",
"axios": "^0.27.2",
"chokidar": "^3.5.2",
"express": "^4.17.1",
"http-proxy-middleware": "^2.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@banez/fs": "^1.0.1",
"@banez/npm-tool": "^1.0.1",
"@types/express": "^4.17.9",
"@types/node": "^16.11.7",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"env-cmd": "^10.1.0",
"eslint": "^7.24.0",
"nodemon": "^2.0.12",
"prettier": "^2.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"nodemonConfig": {
"watch": [
"src/"
],
"ext": "ts"
}
}