-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "@wolkeneis/<<NAME>>",
"version": "0.1.0",
"private": true,
"description": "<<NAME>>",
"keywords": [],
"repository": {
"type": "git",
"url": "git+/~https://github.com/wolkeneis/<<NAME>>.git"
},
"author": "Frooastside <frooastside@gmail.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "/~https://github.com/wolkeneis/<<NAME>>/issues"
},
"homepage": "https://<<NAME>>.wolkeneis.dev/",
"engines": {
"node": "*",
"vscode": "^1.22.0",
"npm": "^8.x.x",
"pnpm": "7.x.x"
},
"main": "<<MAIN>>",
"bin": {},
"type": "module",
"scripts": {
"start": "node -r source-map-support/register dist/index.js",
"watch": "nodemon -e ts -L -w src --exec \"pnpm build && pnpm start\"",
"lint": "eslint --ext ts .",
"lint:fix": "eslint --fix --ext ts .",
"pretty": "prettier --write .",
"build": "tsc --incremental",
"clean": "rimraf dist",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "2.8.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"source-map-support": "^0.5.21",
"uuid": "^9.0.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --ext ts --cache --fix",
"*.{js,ts,css,md,json}": "prettier --write"
}
}