-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 707 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 707 Bytes
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
{
"name": "template-node-basic",
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "node --env-file=./.env --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts",
"serve": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts",
"test": "vitest"
},
"keywords": [],
"author": "Roman Rakhman",
"license": "MIT",
"description": "Yet Another Templates Pack: Node basic",
"dependencies": {
"ts-node": "10.9.2"
},
"devDependencies": {
"@stylistic/eslint-plugin": "4.2.0",
"eslint": "9.23.0",
"typescript": "5.8.2",
"typescript-eslint": "8.28.0",
"vitest": "4.0.8"
},
"engines": {
"node": ">=20.19"
}
}