-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.4 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.4 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
{
"name": "todo_api",
"version": "1.0.0",
"description": "a simple todo_api",
"main": "index.js",
"scripts": {
"makeMigrations": "ts-node -r dotenv/config ./node_modules/typeorm/cli.js --config ormconfig.ts migration:generate -n initialTable",
"migrate": "npm run orm migration:run",
"seeder": "ts-node -r dotenv/config ./node_modules/typeorm-seeding/dist/cli.js --configName ormconfig.ts seed",
"testConnection": "ts-node -r dotenv/config src/scripts/testConnection.ts",
"dev": "ts-node-dev --respawn --transpile-only index.ts",
"orm": "ts-node -r dotenv/config ./node_modules/typeorm/cli.js --config ormconfig.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dius00/todo_api.git"
},
"author": "Antonio De Rinaldis",
"license": "MIT",
"bugs": {
"url": "https://github.com/dius00/todo_api/issues"
},
"homepage": "https://github.com/dius00/todo_api#readme",
"dependencies": {
"apollo-server": "^2.18.2",
"apollo-server-express": "^2.18.2",
"class-validator": "^0.12.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"graphql": "^15.3.0",
"pg": "^8.4.1",
"typeorm": "^0.2.28",
"typeorm-seeding": "^1.6.1"
},
"devDependencies": {
"@types/node": "^14.11.10",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0",
"type-graphql": "^1.1.0",
"typescript": "^4.0.3"
}
}