-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "affiliate-tracker",
"version": "0.0.1",
"description": "Service to track affiliates on purchases",
"main": "dist/index.js",
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"start": "nodemon",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"test:watch": "mocha -r ts-node/register src/**/*.spec.ts --watch",
"typeorm": "./node_modules/.bin/typeorm"
},
"keywords": [
"affiliate"
],
"license": "UNLICENSED",
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/debug": "^4.1.4",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.12",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"class-validator": "^0.9.1",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"json2typescript": "^1.2.3",
"pg": "^7.11.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.18"
}
}