forked from jakub-gawlas/example-app-nest-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 836 Bytes
/
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
{
"name": "nest-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index",
"develop": "nodemon -e ts index",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.1",
"express": "^4.15.2",
"nest.js": "^1.0.3",
"ts-node": "^3.0.4",
"typescript": "^2.3.2"
},
"devDependencies": {
"@types/express": "^4.0.35",
"@types/jest": "^19.2.3",
"@types/node": "^7.0.18",
"jest": "^19.0.2",
"ts-jest": "^19.0.14"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
}
}