-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.49 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "adminremix-cli",
"version": "0.0.1",
"description": "CLI for AdminRemix",
"main": "./lib/index.js",
"bin": {
"adminremix": "./lib/index.js"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc -p . && pkg .",
"eslint": "eslint . --ext .js,.ts",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"npm run prettier:check"
]
},
"keywords": [],
"author": "AdminRemix LLC",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.9",
"commander": "^9.4.1",
"dotenv": "^16.0.3",
"figlet": "^1.5.2",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"node-cron": "^3.0.2",
"papaparse": "^5.3.2",
"temp": "^0.9.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/figlet": "^1.5.5",
"@types/node-cron": "^3.0.4",
"@types/papaparse": "^5.3.5",
"@types/temp": "^0.9.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"pkg": {
"scripts": "lib/**/*.js",
"assets": [
"node_modules/figlet/fonts/Big.flf"
],
"targets": [
"node16-win-x64"
],
"outputPath": "dist"
}
}