-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.69 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "puppies-api-ts",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"dependencies": {
"@types/body-parser": "^1.17.1",
"@types/cors": "^2.8.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint": "^6.6.0",
"express": "^4.17.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"@types/supertest": "^2.0.8",
"@zerollup/ts-transform-paths": "^1.7.4",
"cross-env": "^6.0.3",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"ttypescript": "^1.5.8",
"typescript": "^3.6.4"
},
"scripts": {
"build": "rm -rf ./dist && ttsc",
"dev": "cross-env NODE_ENV=development node --inspect --respawn src/index.ts",
"lint": "npm run lint:ts && npm run lint:eslint",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint src/**/*.ts",
"start": "node ./dist/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xopo/puppies-api-ts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/xopo/puppies-api-ts/issues"
},
"homepage": "https://github.com/xopo/puppies-api-ts#readme",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
}
}