-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 KB
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": "@mockthat/core",
"version": "0.1.1",
"description": "",
"main": "./dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/mockthat/core"
},
"author": "",
"license": "MIT",
"scripts": {
"start": "node --inspect=5858 -r ts-node/register ./index.ts",
"start:watch": "nodemon",
"prepublish": "tsc",
"tsc": "tsc",
"build": "npm run build",
"test": "jest"
},
"dependencies": {
"@types/mustache": "^0.8.32",
"express": "^4.17.1",
"moment": "^2.24.0",
"mustache": "^3.0.1",
"node-watch": "^0.6.2",
"socket.io": "^2.2.0"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.1",
"@types/socket.io": "^2.1.2",
"@types/ws": "^6.0.1",
"eslint": "^6.0.1",
"eslint-plugin-import": "^2.18.0",
"jest": "^24.8.0",
"minimist": "^1.2.0",
"nodemon": "^1.19.1",
"open": "^6.4.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"bin": {
"mockthat": "./bin/mockthat.js"
},
"preferGlobal": true
}