-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.47 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
{
"name": "node_auth_microservice",
"version": "0.0.1",
"description": "authentication service",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"build": "ttsc",
"migrate": "ts-node --project ./tsconfig.json --require tsconfig-paths/register ./node_modules/typeorm/cli.js migration:run",
"revert": "ts-node --project ./tsconfig.json --require tsconfig-paths/register ./node_modules/typeorm/cli.js migration:revert",
"initdb": "dropdb db_dev; createdb -E UTF8 db_dev"
},
"author": "gonzalo fidalgo",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.5.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"typeorm": "^0.2.30",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.22",
"@types/pg": "^7.14.9",
"@types/uuid": "^8.3.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"ttypescript": "^1.5.12",
"typescript": "^4.1.3",
"typescript-transform-paths": "^2.2.2"
}
}