-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.96 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.96 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "typescript-express-template",
"version": "0.0.1",
"description": "TypeScript and Express Project Template",
"main": "build/src/server.js",
"types": "build/src/server.d.ts",
"files": [
"build/src"
],
"scripts": {
"test": "ava --timeout=30s --verbose",
"pretest": "eslint **/*.ts",
"build": "tsc -p .",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node build/src/server.js",
"dev": "TS_NODE_FILES=true nodemon --watch 'src/**' --ext 'ts,json' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/server.ts",
"lint": "eslint **/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garasingulik/typescript-express-template.git"
},
"keywords": [
"typescript",
"express",
"template",
"bootstrap",
"skeleton"
],
"author": "Indra Gunawan <indra@garasingulik.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/garasingulik/typescript-express-template/issues"
},
"homepage": "https://github.com/garasingulik/typescript-express-template#readme",
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"fp-ts": "^2.10.5",
"io-ts": "^2.2.16",
"io-ts-reporters": "^2.0.0",
"tswrap": "^1.0.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"ava": "^3.15.0",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.1",
"nodemon": "^2.0.12",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"ava": {
"files": [
"./test/**/*.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
}
}