forked from RodolfoSilva/hasura-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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": "hasura-auth",
"version": "0.2.1",
"description": "Simple auth for HASURA",
"main": "./build/index.js",
"scripts": {
"start": "node ./build/index.js",
"start:dev": "cross-env DEBUG=App* NODE_ENV=development nodemon -L -e ts,graphql -x ts-node src/index.ts",
"build": "cross-env NODE_ENV=production rimraf build && tsc",
"prepublish": "in-publish && yarn run lint && yarn run test && yarn run build || not-in-publish",
"test": "jest --ci",
"lint": "tslint -p tsconfig.json"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rodolfosilva/hasura-auth.git"
},
"author": "Rodolfo Silva",
"license": "MIT",
"bugs": {
"url": "https://github.com/rodolfosilva/hasura-auth/issues"
},
"homepage": "https://github.com/rodolfosilva/hasura-auth#readme",
"dependencies": {
"apollo-server-express": "^2.7.0",
"bcryptjs": "^2.4.3",
"dotenv-flow": "^3.0.0",
"express": "^4.17.1",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.14",
"node-fetch": "^2.6.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/graphql": "^14.2.2",
"@types/jest": "^24.0.15",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^12.6.8",
"cross-env": "^5.2.0",
"in-publish": "^2.0.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
}
}