-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.93 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "census-graphql-server",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"compilerOptions": {
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
},
"_moduleAliases": {
"@auth": "src/auth",
"@entities": "src/entities",
"@inputs": "src/inputs",
"@resolvers": "src/resolvers"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon -w src --ext ts --exec ts-node src/index.ts",
"seed": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed --config ormconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"postinstall": "npm run-script build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noghanodedra/census-graphql-server.git"
},
"engines": {
"node": "12.x"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/noghanodedra/census-graphql-server/issues"
},
"homepage": "https://github.com/noghanodedra/census-graphql-server#readme",
"devDependencies": {
"nodemon": "^2.0.3"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.6",
"@types/faker": "^4.1.11",
"@types/jsonwebtoken": "^8.3.8",
"apollo-server": "^2.14.2",
"apollo-server-express": "^2.14.2",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"expres": "0.0.5",
"express": "^4.17.1",
"graphql": "^14.6.0",
"graphql-iso-date": "^3.5.0",
"graphql-tag": "^2.10.3",
"graphql-tools": "^4.0.7",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"module-alias": "^2.2.2",
"pg": "^7.18.2",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.8.2",
"type-graphql": "^0.17.6",
"typeorm": "^0.2.24",
"typeorm-seeding": "^1.3.0",
"typescript": "^3.8.3"
}
}