-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.6 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": "facebook-bot",
"private": true,
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json -t stylish",
"lint:fix": "yarn lint --fix",
"pretty": "prettier './src/**/*.{ts,tsx}' './__tests__/**/*.{ts,tsx}' --check",
"pretty:fix": "yarn pretty --write",
"start": "ts-node app.ts",
"test": "jest --reporters=default"
},
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.1",
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.8",
"@types/qs": "^6.5.3",
"@types/raven": "^2.5.3",
"autobind-decorator": "^2.4.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"haversine-distance": "^1.1.4",
"husky": "^1.3.1",
"inversify": "^5.0.1",
"jest": "^24.8.0",
"jest-create-mock-instance": "^1.1.0",
"jest-junit": "^6.4.0",
"lint-staged": "^8.1.5",
"moment": "^2.24.0",
"nalunch-sdk": "^1.1.0",
"node-env-file": "^0.1.8",
"node-mocks-http": "^1.7.5",
"prettier": "^1.16.1",
"qs": "^6.7.0",
"raven": "^2.6.4",
"reflect-metadata": "^0.1.12",
"ts-jest": "^24.0.2",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.5.2",
"winston": "^2.3.9",
"winston-graylog2": "^1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css}": [
"yarn pretty:fix",
"git add"
],
"*.{ts,tsx}": [
"yarn pretty:fix",
"yarn lint:fix",
"git add"
]
}
}