-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.77 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
{
"name": "template-typescript-node-service",
"repository": {
"type": "git",
"url": "git+https://github.com/oskarlh/template-typescript-node-service.git"
},
"version": "1.0.0",
"exports": "./dist/index.js",
"type": "module",
"author": "Oskar Larsson Högfeldt <oskar@oskar.pm>",
"contributors": [
"Oskar Larsson Högfeldt <oskar@oskar.pm>"
],
"license": "MIT",
"description": "Add a description here!!! template-typescript-node-service",
"keywords": [
"template-typescript-node-service"
],
"dependencies": {
"dotenv": "^16.0.3"
},
"devDependencies": {
"@swc/cli": "^0.4",
"@swc/core": "^1",
"@swc/jest": "^0.2",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29",
"@types/node": "^22",
"eslint": "^9",
"eslint-config-prettier": "^9",
"eslint-plugin-prettier": "^5",
"jest": "^29",
"nodemon": "^3",
"prettier": "^3",
"ts-jest": "^29",
"typescript": "~5.6",
"typescript-eslint": "^8.12.1"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build-and-start": "npm run build && npm run start",
"build-and-verify": "npm run test-with-typechecking --ci && npm run lint && npm run build",
"build-without-typechecking": "swc -C exclude=.test.ts -d dist -s true -- src",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"prepack": "npm run build",
"start": "node --enable-source-maps --require=./suppressExperimentalWarnings.cjs dist/index.js",
"start-debug": "node --nolazy --inspect --enable-source-maps --require=./suppressExperimentalWarnings.cjs dist/index.js",
"test": "jest",
"test-with-typechecking": "jest --config=jest.config.with-typechecking.js",
"typecheck": "tsc --noEmit",
"verify": "npm run test-with-typechecking --ci && npm run lint && npm run typecheck",
"watch": "nodemon"
},
"files": [
"dist"
]
}