-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.63 KB
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
{
"name": "automizer-data",
"version": "0.2.1",
"description": "Store and browse aggregated data using Prisma database tool",
"repository": {
"type": "git",
"url": "git+https://github.com/singerla/automizer-data.git"
},
"author": "Thomas Singer <tsinger@gmx.de> (github.com/singerla)",
"license": "MIT",
"private": false,
"files": [
"dist",
"README"
],
"main": "dist/index.js",
"types": "dist/index.d.js",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/lodash": "^4.14.191",
"@types/node": "18.11.18",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"prisma": "^6.15.0",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1"
},
"scripts": {
"dev": "nodemon -e ts --exec 'ts-node' src/dev.ts",
"dev-test": "nodemon -e ts --exec 'ts-node' src/dev-test.ts",
"store": "ts-node store.ts",
"dev-store": "nodemon -e ts --exec 'ts-node' store.ts",
"test": "npx jest",
"build": "tsc"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^6.15.0",
"@types/node-xlsx": "^0.21.0",
"@xmldom/xmldom": "^0.9.6",
"cli-progress": "^3.11.2",
"csv-parser": "^3.0.0",
"csv-string": "^4.1.1",
"exceljs": "^4.4.0",
"lodash": "^4.17.21",
"mysql2": "^3.9.6",
"node-fetch": "^3.3.2",
"node-xlsx": "^0.21.0",
"pptx-automizer": "^0.8.1",
"typescript": "5.1.6"
},
"engines": {
"node": ">=12.2.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}