-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "iofinnet-backend-coding-challenge",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "NODE_ENV=production ts-node ./src/bin/server.ts",
"dev": "NODE_ENV=development npx nodemon",
"build": "npx tsc",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint --ext js,ts .",
"lint:fix": "eslint --ext js,ts --fix ."
},
"dependencies": {
"@iofinnet/io-core-cldsvc-eslint-config": "1.3.1",
"@iofinnet/io-core-fedev-prettier-config": "1.2.0",
"cookie-parser": "~1.4.3",
"express": "~4.16.0",
"helmet": "6.0.1",
"http-errors": "~1.6.2",
"morgan": "~1.9.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.4.0",
"@types/morgan": "^1.9.4",
"eslint": "^8.9.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.8.0",
"nodemon": "^2.0.20",
"supertest": "^3.3.0",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"ignore": [
"*.test.ts"
]
}
}