-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 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
{
"name": "ordered-datastore-backup-tool",
"version": "0.1.0",
"description": "",
"scripts": {
"build": "tsc --project .",
"watch": "npm run build -- --watch",
"start": "node build/index.js",
"run": "npm run build && npm start",
"lint": "eslint src/**/*.ts",
"format": "prettier . --config .prettierrc.json --write",
"check": "npm run format && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThisStudio/ordered-datastore-backup-tool.git"
},
"author": "This Studio LLC",
"bugs": {
"url": "https://github.com/ThisStudio/ordered-datastore-backup-tool/issues"
},
"homepage": "https://github.com/ThisStudio/ordered-datastore-backup-tool#readme",
"devDependencies": {
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"dependencies": {
"@types/async": "^3.2.20",
"@types/node-fetch": "^2.6.4",
"@types/prompts": "^2.4.4",
"async": "^3.2.4",
"node-fetch": "^2.6.11",
"prompts": "^2.4.2"
}
}