-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "neutronadapter",
"version": "0.0.1",
"description": "Semantic client for Neutron data",
"main": "build/main.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "jest",
"build": "tsc",
"start": "node ./build/main.js",
"dev:build": "tsc -w",
"dev:run": "nodemon build/main -jsap './resources/dld.neutron.adapter.jsap.json' -loglevel 1",
"dev": "concurrently npm:dev:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GregorioMonari/NeutronAdapter.git"
},
"author": "Gregorio Monari",
"license": "MIT",
"bugs": {
"url": "https://github.com/GregorioMonari/NeutronAdapter/issues"
},
"homepage": "https://github.com/GregorioMonari/NeutronAdapter#readme",
"dependencies": {
"axios": "^1.5.0",
"concurrently": "^8.2.1",
"cron": "^3.1.3",
"csv": "^6.3.3",
"csv-parser": "^3.0.0",
"date-fns": "^2.30.0",
"fast-csv": "^4.3.6",
"fs": "^0.0.1-security",
"greglogs": "^1.0.2",
"luxon": "^3.4.3",
"nodemon": "^3.0.1",
"pacfactory": "^0.1.6",
"papaparse": "^5.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/luxon": "^3.3.2",
"@types/node": "^20.11.17",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}