-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.11 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
{
"name": "photo-api",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"scripts": {
"test": "jest --runInBand",
"build-ts": "tsc",
"dev": "ts-node-dev src/server.ts --ignore-watch node_modules"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.341.0",
"express": "^4.16.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/chance": "^1.0.1",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.3",
"@types/supertest": "^2.0.6",
"@types/uuid": "^3.4.4",
"chance": "^1.0.16",
"jest": "^23.6.0",
"supertest": "^3.3.0",
"ts-jest": "^23.10.3",
"ts-node": "^7.0.1",
"ts-node-dev": "^1.0.0-pre.30",
"typescript": "^3.1.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"transform": {
"\\.ts$": "ts-jest"
},
"testMatch": [
"**/test/**/*.test.ts"
],
"testEnvironment": "node",
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
}
}
}