forked from DetachHead/typescript-nodejs-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "typescript-nodejs-project",
"version": "0.0.0",
"files": [
"dist",
"src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:check": "eslint src --ext .ts",
"lint:fix": "npm run lint:check -- --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"build": "rimraf ./dist && tsc",
"run": "npm run build && node -r source-map-support/register dist/main"
},
"keywords": [],
"author": "ethan-xd",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ethan-xd/typescript-nodejs-project.git"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/power-assert": "^1.5.3",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-preset-power-assert": "^3.0.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"espower-typescript": "^9.0.2",
"jest": "^26.6.3",
"power-assert": "^1.6.1",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-jest": "^26.4.4",
"typed-nodejs-assert": "^1.1.0",
"typescript": "^4.4.0-beta"
},
"engines": {
"npm": ">=7.11.1"
}
}