-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "sequelize-typescript-example",
"version": "1.0.0",
"description": "Simple example of the sequelize-typescript package.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest --watchAll --verbose",
"tsc": "tsc",
"exec": "clear && npm run tsc && NODE_ENV=local node build/App.js",
"postinstall": "node-config-ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlumbroso/sequelize-typescript-example.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jlumbroso/sequelize-typescript-example/issues"
},
"homepage": "https://github.com/jlumbroso/sequelize-typescript-example#readme",
"dependencies": {
"lodash": "^4.17.21",
"moment": "^2.29.1",
"node-config-ts": "^2.3.1",
"pino": "^5.17.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"sequelize": "^4.44.4",
"sequelize-typescript": "^0.6.11",
"source-map-support": "^0.5.19",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"@types/lodash": "^4.14.168",
"@types/pino": "^5.20.0",
"@types/request": "^2.48.5",
"@types/request-promise-native": "^1.0.17",
"@types/sequelize": "^4.28.9",
"@types/sqlite3": "^3.1.7",
"jest": "^23.6.0",
"nodemon": "^1.19.4",
"pino-pretty": "^2.6.1",
"ts-jest": "^23.10.5",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.9"
}
}