-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.75 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "node-express-api",
"version": "1.0.0",
"description": "A template repository for a Node.js API using Express.js and TypeScript.",
"main": "dist/server.js",
"author": "Pod Point Software Team <software@pod-point.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Pod-Point/node-express-api.git"
},
"bugs": {
"url": "https://github.com/Pod-Point/node-express-api/issues"
},
"homepage": "https://github.com/Pod-Point/node-express-api#readme",
"keywords": [
"Node",
"Express",
"TypeScript",
"API"
],
"scripts": {
"build": "node_modules/.bin/tsc",
"build:watch": "node_modules/.bin/tsc -w",
"dev": "node_modules/.bin/concurrently -k -n \"TypeScript,Node\" \"npm run build:watch\" \"npm run start\"",
"lint": "node_modules/.bin/tslint 'src/**/*.{ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"start": "node_modules/.bin/nodemon ./dist/server.js",
"test": "node_modules/.bin/jest",
"test:coverage": "node_modules/.bin/jest --coverage --runInBand --ci",
"test:watch": "node_modules/.bin/jest --watch",
"typeorm": "ts-node ./node_modules/typeorm/cli.js --config dist/config/orm.js",
"postinstall": "test -f .env || cp -n .env.example .env"
},
"dependencies": {
},
"devDependencies": {
},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts",
"!node_modules/**",
"!src/server.ts",
"!src/database/factories/**/*.ts",
"!src/database/migrations/**/*.ts",
"!src/types/**/*.ts"
],
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(js?|ts?)$",
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"setupFiles": [
"./src/__tests__/setup.ts"
]
}
}