This repository was archived by the owner on Apr 20, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
44
45
46
47
48
{
"name": "--name--",
"description": "--description--",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Nejc Drobnič <yo@quantumly.dev> (https://quantumly.dev)",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"dev": "yarn build && yarn start",
"lint": "eslint src --ext ts --fix",
"update": "yarn upgrade-interactive --latest",
"build": "tsc -b src",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w",
"test": "jest",
"test:coverage": "jest --coverage",
"sversion": "yarn standard-version"
},
"dependencies": {},
"devDependencies": {
"@jest/types": "^27.2.4",
"@quantumly/eslint-config": "^1.1.0",
"@types/jest": "^27.0.2",
"@types/module-alias": "^2.0.1",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"jest": "^27.2.4",
"jest-circus": "^27.2.4",
"lint-staged": "^11.1.2",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=14",
"npm": ">=6"
},
"lint-staged": {
"*.ts": [
"eslint --fix --ext ts"
]
}
}