-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "marketplace",
"version": "0.0.1",
"description": "A marketplace simulator in Node",
"main": "index.js",
"scripts": {
"test": "tsc && jest --verbose",
"test-coverage": "jest --coverage --verbose",
"build": "tsc",
"dev": "tsc --watch & nodemon dist",
"lint": "eslint src --ext ts",
"tsc": "tsc",
"tscv": "tsc --version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrmcduff/marketplace.git"
},
"keywords": [
"node",
"simulator",
"economy",
"marketplace"
],
"author": "Michael McDuffee",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrmcduff/marketplace/issues"
},
"homepage": "https://github.com/mrmcduff/marketplace#readme",
"dependencies": {
"@types/node": "^10.12.18",
"mathjs": "^5.4.1",
"nodemon": "^1.18.9",
"typescript": "^3.2.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@typescript-eslint/parser": "^1.0.0",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-promise": "^4.0.1",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"ts-node": "^8.0.1",
"tsc": "^1.20150623.0"
}
}