-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.08 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.08 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "ts-template",
"version": "0.1.0",
"description": "TypeScript project template",
"main": "dist/dev/index.js",
"scripts": {
"prebuild": "rimraf dist/dev",
"build": "tsc --project tsconfig.dev.json",
"postbuild": "resolve-tspaths --project tsconfig.dev.json",
"prebuild:prod": "rimraf dist/prod",
"build:prod": "tsc --project tsconfig.prod.json",
"postbuild:prod": "resolve-tspaths --project tsconfig.prod.json",
"lint": "eslint --cache .",
"start": "nodemon --ext ts --ignore *.d.ts --ignore *.test.ts --delay 1300ms --exec 'ts-node --require tsconfig-paths/register --transpileOnly' src",
"test": "c8 --100 ava 'src/**/*.test.ts'",
"test:acceptance": "ava 'test/acceptance/**/*.test.ts'",
"test:integration": "ts-node --transpileOnly test/integration",
"workflow:ci": "npm run lint && npm run build && npm test && npm run test:integration && npm run test:acceptance"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omothm/ts-template.git"
},
"keywords": [
"typescript",
"template"
],
"author": "Omar Othman <omar.othman@live.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/omothm/ts-template/issues"
},
"homepage": "https://github.com/omothm/ts-template#readme",
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only",
"tsconfig-paths/register"
]
},
"prettier": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"ava": "^5.2.0",
"c8": "^7.13.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-canonical": "^4.2.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^10.2.2",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"resolve-tspaths": "^0.8.8",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.0.2"
}
}