-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.29 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
{
"name": "trackdechets-sirene-search",
"version": "1.4.0",
"description": "Indexation of french companies from INSEE's database",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"types": "tsc -noEmit",
"start": "npx --yes http-server",
"index": "npm run index:sirene && npm run index:siret",
"preindex:dev": "export NODE_ENV=dev && docker-compose up -d elasticsearch && npm run build && npm run index:sirene && npm run index:siret",
"index:dev": "npm run index:sirene:dev && npm run index:siret:dev",
"index:sirene": "node dist/commands/indexInseeSirene.js",
"index:sirene:dev": "tsx src/commands/indexInseeSirene.ts",
"index:siret": "node dist/commands/indexInseeSiret.js",
"index:siret:dev": "tsx src/commands/indexInseeSiret.ts",
"index:siret:csv": "node dist/commands/indexInseeSiretCsv.js",
"index:siret:csv:dev": "tsx src/commands/indexInseeSiretCsv.ts",
"test": "jest --detectOpenHandles",
"lint": "eslint -c .eslintrc.js --ext .ts ./src"
},
"engines": {
"node": "^18",
"npm": "^9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MTES-MCT/trackdechets-sirene-search.git"
},
"keywords": [
"data",
"indexation",
"search",
"elasticsearch",
"typescript"
],
"author": "Trackdechets Devs <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/MTES-MCT/trackdechets-sirene-search/issues"
},
"homepage": "https://github.com/MTES-MCT/trackdechets-sirene-search/blob/main/search/README.md",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"tsx": "^3.12.7",
"typescript": "^5.0.4",
"wait-on": "^7.0.1"
},
"dependencies": {
"@elastic/elasticsearch": "7.13",
"app-root-path": "^3.1.0",
"dd-trace": "^3.28.0",
"fast-csv": "^4.3.6",
"node-stream-zip": "^1.15.0",
"winston": "^3.11.0"
}
}