-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.83 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
56
{
"name": "onboard-ronaldo-scarpate-backend",
"version": "1.0.0",
"description": "- GraphQL, Apollo Server, TS, NodeJS and TypeORM implementations with database\r - Possible CRUD operations with some technologies:",
"main": "index.js",
"scripts": {
"build": "npx ts-node src/index.ts --emit -r tsconfig-paths/register",
"check:circular": "npx madge --circular --ts-config tsconfig.json --extensions ts ./",
"dev": "nodemon --exec ts-node src/index.ts -e ts",
"start": "npx tsc && npx ts-node dist/index.js -i dist/test",
"test": "npx mocha --no-config -r='ts-node/register,tsconfig-paths/register' --fail-zero --delay src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indigotech/onboard-ronaldo-scarpate-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/indigotech/onboard-ronaldo-scarpate-backend/issues"
},
"homepage": "https://github.com/indigotech/onboard-ronaldo-scarpate-backend#readme",
"dependencies": {
"@apollo/server": "4.3.1",
"date-fns": "2.29.3",
"dotenv": "16.0.3",
"graphql": "16.6.0",
"pg": "8.8.0",
"type-graphql": "2.0.0-beta.1",
"typedi": "0.10.0",
"typeorm": "0.3.11"
},
"devDependencies": {
"@types/chai": "4.3.4",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"axios": "1.3.1",
"chai": "4.3.7",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"mocha": "10.2.0",
"prettier": "2.8.3",
"reflect-metadata": "0.1.13",
"supertest": "6.3.3",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.2",
"typescript": "4.9.4"
},
"peerDependencies": {
"class-validator": "0.14.0"
}
}