-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"scripts": {
"tsc": "node ./node_modules/.bin/tsc",
"build": "yarn tsc",
"lint": "node ./node_modules/.bin/eslint \"{src,definitions}/**/*.{js,ts}\"",
"format": "prettier --write .",
"dev": "ts-node -r dotenv-yaml/config index.ts",
"extractQRCodeFromHelloAsso": "ts-node -r dotenv-yaml/config extractQRCodeFromHelloAsso.ts"
},
"dependencies": {
"@types/express": "^4.17.9",
"@types/node": "^14.14.7",
"body-parser": "^1.20.0",
"csv-reader": "^1.0.8",
"express": "^4.17.1",
"got": "^11.8.0",
"pdf-qr": "^1.0.0",
"socket.io": "^4.5.0",
"typescript": "^4.0.5"
},
"devDependencies": {
"@types/csv2json": "^1.4.2",
"@types/pdfkit": "^0.12.4",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"dotenv-yaml": "^0.1.4",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-security": "^1.4.0",
"prettier": "^2.1.2"
},
"name": "sthack-rump",
"version": "1.0.0",
"main": "index.js",
"author": "agix",
"license": "MIT",
"private": true,
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"ts-node": "^10.7.0"
}
}