-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
53
54
55
{
"name": "instant-insights",
"version": "1.2.0",
"main": "index.js",
"repository": "https://github.com/pilotpirxie/instant-insights.git",
"author": "pilotpirxie <[email protected]>",
"license": "LGPL-2.1",
"devDependencies": {
"@types/cron": "^2.0.0",
"@types/express": "^4.17.14",
"@types/express-serve-static-core": "^4.17.31",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"scripts": {
"run:js": "node ./dist/app.js",
"run:ts": "ts-node ./src/app.ts",
"build": "tsc",
"dev": "nodemon",
"eslint": "./node_modules/.bin/eslint src/ --ext .ts --ext .js --ext tsx --ext .jsx",
"fix": "./node_modules/.bin/eslint --fix src/ --ext .ts --ext .js --ext tsx --ext .jsx"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts, html",
"ignore": [
"src/public"
],
"exec": "ts-node ./src/app.ts"
},
"dependencies": {
"@clickhouse/client": "^0.0.10",
"@types/ua-parser-js": "^0.7.36",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"cron": "^2.1.0",
"dayjs": "^1.11.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.7.0",
"jsonwebtoken": "^8.5.1",
"node-cache": "^5.1.2",
"ua-parser-js": "^1.0.32"
}
}