-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
{
"name": "lighthouse",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart:dev": "npm run migrations:up",
"start:dev": "node dist/server",
"dev": "NODE_ENV=development npx nodemon -i *.spec.ts --ext ts -x ts-node index.ts",
"lint": "npx tslint --project tsconfig.json",
"prebuild": "npm run lint",
"build": "npx tsc --project tsconfig.json",
"build:docker": "docker-compose build",
"typeorm": "npx ts-node node_modules/.bin/typeorm",
"migrations:up": "npm run typeorm -- migration:run",
"migrations:down": "npm run typeorm -- migration:revert",
"test": "npx jest --config ./jest.config.js"
},
"keywords": [
"performance"
],
"author": {
"name": "Vitaly Markov",
"email": "vitaly.markov@yahoo.com"
},
"license": "MIT",
"devDependencies": {
"@types/cron": "^1.3.0",
"@types/dotenv-safe": "^5.0.3",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.13",
"@types/nock": "^9.3.0",
"@types/node": "^8.0.29",
"@types/node-fetch": "^2.1.4",
"@types/superagent": "^3.8.6",
"jest": "^23.6.0",
"jest-runner-tsc": "^1.3.2",
"nock": "^10.0.6",
"nodemon": "^1.18.9",
"supertest": "^3.4.1",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typescript": "^3.2.2"
},
"dependencies": {
"body-parser": "^1.18.3",
"cron": "^1.6.0",
"dotenv-safe": "^6.1.0",
"express": "^4.16.4",
"express-basic-auth": "^1.1.6",
"fs-extra": "^7.0.1",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.3.2",
"lighthouse": "^4.0.0-alpha.2-3.2.1",
"lodash.snakecase": "^4.1.1",
"node-fetch": "^2.3.0",
"pg": "^7.8.0",
"puppeteer": "^1.11.0",
"reflect-metadata": "^0.1.10",
"serve-handler": "^5.0.7",
"typeorm": "0.2.11",
"uuid": "^3.3.2"
}
}