-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.28 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
{
"name": "leads-tracker",
"version": "0.1.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"pretest": "rm -rf dist/*; tsc",
"test": "node_modules/.bin/_mocha",
"prestart": "rm -rf dist/*; tsc",
"start": "node dist/index.js",
"precover": "rm -rf coverage/* dist/*; tsc",
"cover": "node_modules/.bin/nyc node_modules/.bin/_mocha",
"preapidoc": "rm -rf docs; mkdir -p docs",
"apidoc": "apidoc -i src/ -o docs/"
},
"nyc": {
"extension": [
"ts"
],
"reporter": [
"lcov",
"text-summary"
]
},
"apidoc": {
"title": "CB Leads Tracker",
"url": "https://cb-leadtracker.herokuapp.com/api",
"sampleUrl": "https://cb-leadtracker.herokuapp.com/api"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.16.2",
"body-parser": "^1.17.2",
"express": "^4.15.4",
"path": "^0.12.7",
"pg": "^6.4.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.4.3",
"uid2": "0.0.3"
},
"devDependencies": {
"@types/body-parser": "^1.16.4",
"@types/express": "^4.0.36",
"@types/sequelize": "^4.0.67",
"apidoc": "^0.17.6",
"chai": "^4.1.0",
"chai-http": "^3.0.0",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"request": "^2.81.0",
"typescript": "^2.4.2"
}
}