-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "@impler/queue-manager",
"version": "1.9.0",
"author": "implerhq",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "rimraf dist",
"format": "prettier --write \"src/**/*.ts\"",
"build": "cross-env node_modules/.bin/tsc -p tsconfig.build.json",
"start": "cross-env TZ=UTC nodemon",
"start:prod": "cross-env TZ=UTC node ./dist/index.js",
"start:dev": "cross-env TZ=UTC nodemon",
"precommit": "lint-staged",
"lint": "eslint src",
"lint:fix": "pnpm lint -- --fix"
},
"dependencies": {
"@impler/dal": "workspace:^",
"@impler/services": "workspace:^",
"@impler/shared": "workspace:^",
"@sentry/node": "^7.112.2",
"axios": "1.8.2",
"dayjs": "^1.11.11",
"dotenv": "^16.0.2",
"envalid": "^7.3.1",
"papaparse": "^5.4.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/node": "^18.7.18",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}