-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "tests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/server.js",
"dev": "tsc-watch --onSuccess \"node dist/server.js\" ",
"eslint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-validator": "^6.11.1",
"mongoose": "^5.12.10",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"tsc-watch": "^4.2.9",
"typeorm": "^0.2.30",
"typescript": "^4.1.3"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"babel-jest": "^26.6.3",
"eslint": "^7.27.0",
"jest": "^26.6.3",
"supertest": "^6.1.3"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
}
}