-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.02 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
43
{
"name": "autodispatch",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "npm run build && node .",
"lint": "npx eslint"
},
"author": "GoldenXLence",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/GoldenXLence/AutoDispatch.git"
},
"dependencies": {
"axios": "^0.27.2",
"csv-parser": "^3.0.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"node-cron": "^3.0.1",
"qs": "^6.10.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/node-cron": "3.0.1",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "2.7.1",
"typescript": "^4.7.3"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}