-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "csv-to-sql-insert",
"version": "0.1.0",
"type": "module",
"repository": "https://github.com/gitdagray/csv-to-sql",
"description": "input a csv file, output a sql insert statement",
"main": "index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "tsc --skipLibCheck"
},
"author": {
"name": "Dave Gray",
"email": "dave@davegray.codes",
"url": "https://www.davegray.codes/"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"prettier": "^3.1.1",
"pretty-quick": "^3.1.3",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}