-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.17 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
{
"name": "typescrtipt-script-starter",
"version": "1.0.0",
"description": "Simple but effective way of starting a typescript script",
"main": "index.js",
"scripts": {
"dev": "tsc-watch -b --onSuccess 'node dist/index.js'",
"dev:env": "cross-env $(cat .env) npm run dev",
"debug": "tsc-watch -b --onSuccess 'node --inspect dist/index.js'",
"clean": "rimraf dist docs tsconfig.tsbuildinfo test/results",
"build": "tsc",
"docs": "typedoc --out docs src/",
"lint": "eslint src",
"test": "cross-env NODE_ENV=test jest --config test/config/jest.config.js",
"test:coverage": "npm run test --coverage",
"test:watch": "npm run test --watch"
},
"author": "Alex Torres <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"tsc-watch": "^4.4.0",
"typescript": "^4.3.5"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}