-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 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
54
55
{
"name": "typescript-express-tecobrary",
"version": "1.0.0",
"description": "tecobrary node server typescript version",
"main": "index.js",
"scripts": {
"serve": "nodemon --exec ts-node index.ts",
"test": "cross-env MODE=test jest --forceExit"
},
"keywords": [],
"author": "",
"license": "ISC",
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
}
},
"dependencies": {
"@types/bluebird": "^3.5.29",
"@types/validator": "^10.11.3",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-env": "^6.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.9.1",
"mysql2": "^2.0.0",
"querystring": "^0.2.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.2",
"sequelize-typescript": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.8",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.5.0",
"typescript": "^3.7.2"
}
}