-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "typescript-dry-run",
"version": "1.0.0",
"description": "test run of code challenge",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"lint": "./node_modules/eslint/bin/eslint.js src --ext .ts",
"fix-lint": "./node_modules/eslint/bin/eslint.js src --ext .ts --fix",
"test": "jest --testTimeout=10000",
"dev": "ts-node ./src/server.ts",
"start": "nodemon ./dist/server.js",
"prod": "npm run build && npm run start"
},
"author": "Yann Hulot",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"mongoose": "^5.9.21",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"winston": "^3.3.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/express": "^4.17.6",
"@types/jest": "26.0.3",
"@types/mongoose": "5.7.29",
"@types/node": "14.0.14",
"@typescript-eslint/eslint-plugin": "3.5.0",
"@typescript-eslint/parser": "3.5.0",
"eslint": "7.4.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0",
"jest": "^26.1.0",
"jest-express": "1.12.0",
"mockingoose": "2.13.2",
"ts-jest": "26.1.1",
"typescript": "3.9.6"
}
}