-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.11 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
{
"name": "typescript-config",
"version": "1.0.0",
"description": "",
"author": "Greg Teixeira",
"license": "MIT",
"scripts": {
"start": "npm run -s build && node dist/index.js",
"dev": "env-cmd tsnd --ignore-watch node_modules --respawn -r tsconfig-paths/register --transpile-only src/index.ts",
"build": "npm run -s clean && tsc --project tsconfig.build.json && tscpaths -p tsconfig.build.json -s ./src -o ./dist",
"test": "jest",
"clean": "rm -rf dist"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"env-cmd": "^10.1.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.1",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-jest": "^0.0.1",
"tscpaths": "^0.0.9",
"typescript": "^4.1.3"
}
}