-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "celsius-pdf-data",
"version": "0.1.0",
"description": "Read data from excel and insert it into a database",
"engines": {
"node": ">= 16.13 <17"
},
"devDependencies": {
"@types/jest": "~29.1",
"@types/node": "^16.11.64",
"@types/validator": "^13.7.7",
"@typescript-eslint/eslint-plugin": "~5.39",
"@typescript-eslint/parser": "~5.39",
"eslint": "~8.24",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "~27.1",
"jest": "~29.1",
"prettier": "~2.7",
"rimraf": "~3.0",
"sequelize-cli": "^6.5.1",
"ts-jest": "~29.0",
"tsutils": "~3.21",
"typescript": "~4.8"
},
"scripts": {
"start": "ts-node ./src/main.ts",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"author": "Steven Goff",
"license": "MIT",
"dependencies": {
"dotenv": "^16.0.3",
"mysql2": "^2.3.3",
"node-xlsx": "^0.21.0",
"read-excel-file": "^5.5.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.24.0",
"sequelize-typescript": "^2.1.3",
"tslib": "~2.4"
},
"volta": {
"node": "16.17.0"
}
}