This repository has been archived by the owner on May 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
115 lines (115 loc) · 2.93 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "kaws",
"version": "0.0.1",
"description": "",
"main": "build/index.js",
"authors": [
"Luc Succes <[email protected]>",
"Art.sy Inc"
],
"license": "MIT",
"engines": {
"node": "12"
},
"scripts": {
"build": "tsc",
"delete-collections": "ts-node scripts/deleteCollections.ts",
"dev": "nodemon --inspect -r ts-node/register src/index.ts",
"dump-schema": "ts-node scripts/dumpSchema.ts",
"import-collections": "ts-node scripts/importCollections.ts",
"index-for-search": "ts-node scripts/indexForSearch.ts",
"lint": "tslint 'src/**/*.{ts,tsx}'",
"pull-database": "./scripts/pull-database.sh",
"release": "release-it",
"start": "node build/index.js",
"test-google-config": "node scripts/test_google_config.js",
"test": "jest",
"type-check": "tsc --noEmit",
"update-database": "ts-node scripts/bootstrapOrUpdate.ts",
"update-price-guidance": "ts-node scripts/updatePriceGuidance.ts",
"update-sitemap": "ts-node scripts/updateSitemap.ts",
"watch": "tsc --watch"
},
"jest": {
"preset": "ts-jest",
"setupFiles": [
"<rootDir>/src/test/config.ts"
],
"testMatch": [
"**/__tests__/**/*test.ts"
],
"roots": [
"<rootDir>/src",
"<rootDir>/scripts"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coverageReporters": [
"lcov"
]
},
"prettier": {
"semi": false,
"singleQuote": false,
"trailingComma": "es5",
"proseWrap": "always"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged; yarn dump-schema _schema.graphql",
"pre-push": "yarn build"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"tslint --fix",
"yarn prettier --write",
"git add"
]
},
"dependencies": {
"@sentry/node": "4.6.4",
"algoliasearch": "^4.10.5",
"aws-sdk": "2.1033.0",
"body-parser": "1.18.3",
"class-transformer": "0.5.1",
"csv-parser": "2.1.0",
"dd-trace": "0.6.0",
"elasticsearch": "15.3.1",
"googleapis": "92.0.0",
"graphql-yoga": "1.18.3",
"lodash": "4.17.21",
"mongodb": "3.6.0",
"mongodb-uri": "0.9.7",
"morgan": "1.9.1",
"node-fetch": "2.6.1",
"reflect-metadata": "0.1.12",
"slugify": "1.3.4",
"turndown": "5.0.3",
"type-graphql": "0.17.6",
"typeorm": "0.2.25"
},
"devDependencies": {
"@types/dd-trace": "0.6.1",
"@types/elasticsearch": "5.0.36",
"@types/jest": "23.3.14",
"@types/lodash": "4.14.116",
"@types/mongodb-uri": "0.9.0",
"@types/morgan": "1.7.35",
"@types/node": "12.12.11",
"bash-color": "0.0.4",
"danger": "4.0.2",
"dotenv": "8.2.0",
"husky": "1.1.2",
"jest": "23.6.0",
"lint-staged": "7.3.0",
"nodemon": "1.18.10",
"prettier": "2.1.2",
"release-it": "7.6.1",
"ts-jest": "23.10.5",
"ts-node": "7.0.1",
"tslint": "6.0.0",
"tslint-config-prettier": "1.15.0",
"typescript": "4.6.4"
}
}