-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.38 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
{
"name": "price_checker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"watch": "nodemon --exec ts-node -- src/index.ts",
"build:swagger": "tsoa swagger --yaml && tsoa routes",
"build:server": "tsc --project tsconfig.json",
"build": "npm run build:swagger && npm run build:server",
"serve": "pm2-runtime dist/index.js",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"test:unit": "cross-env NODE_ENV=test jest src",
"test:watch": "npm run test:unit -- --watch",
"test": "npm run lint && npm run test:unit",
"prettier": "prettier --config prettier.config.js --write 'src/**/*.ts'",
"prepush": "npm run prettier && npm run test"
},
"author": "Maksym Kotielnikov<[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^23.1.5",
"@types/node": "^10.5.2",
"cross-env": "^5.2.0",
"jest": "^23.4.0",
"nodemon": "^1.18.0",
"prettier": "^1.13.7",
"ts-jest": "^23.0.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.9.2"
},
"dependencies": {
"@types/cheerio": "^0.22.8",
"@types/fibers": "0.0.30",
"@types/request": "^2.47.1",
"cheerio": "^1.0.0-rc.2",
"fibers": "^3.0.0",
"request": "^2.88.0"
}
}