-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "timeline_api",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"dependencies": {
"@overnightjs/core": "^1.6.9",
"@overnightjs/logger": "^1.1.9",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"reflect-metadata": "^0.1.13",
"rm": "^0.1.8",
"typeorm": "^0.2.20"
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.89.0",
"@types/bcrypt-nodejs": "0.0.30",
"@types/bluebird": "^3.5.28",
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.22",
"@types/jsonwebtoken": "^8.3.5",
"@types/node": "^12.12.7",
"@types/validator": "^10.11.3",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"substitute": "^0.7.1",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.7.2"
},
"scripts": {
"dev": "nodemon --watch 'src/*/**' --watch 'app.ts' -e ts,tsx --exec ts-node ./app.ts",
"migration:run": "ts-node ./node_modules/typeorm/cli.js migration:run",
"migration:rever": "ts-node ./node_modules/typeorm/cli.js migration:revert",
"test": "jest"
},
"author": "Aslanator",
"license": "ISC"
}