-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 KB
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
{
"name": "devtalks_node_testing",
"version": "1.0.0",
"private": false,
"license": "MIT",
"engines": {
"node": ">=12.20.0"
},
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --ignore-watch node_modules --no-notify ./src/server.ts",
"test": "jest",
"build": "babel src --extensions \".js,.ts\" --out-dir build --copy-files --no-copy-ignored",
"start": "node ./build/server.js"
},
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/morgan": "^1.9.3",
"@types/nock": "^11.1.0",
"@types/node": "^16.6.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"nock": "^13.1.1",
"prettier": "^2.3.2",
"supertest": "^6.1.5",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"ts-node-dev": "^1.1.8",
"tsc": "^2.0.3",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
}
}