-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1023 Bytes
/
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
{
"name": "node-ts-skeleton",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/jest": "^24.0.17",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "4.0.0",
"eslint-config-async": "^1.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-jest": "^25.2.2",
"prettier": "^2.6.0",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4",
"jest": "^26.6.3",
"ts-jest": "^26.5.4"
},
"scripts": {
"start": "yarn build && node build/index.js",
"build": "tsc",
"dev": "ts-node-dev src/index.ts",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"test": "jest --coverage",
"test:watch": "jest --watchAll --coverage"
}
}