This repository has been archived by the owner on Nov 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
57
58
59
60
61
62
63
{
"name": "@banur/core",
"version": "0.0.1",
"description": "Core banur infrastructure for setting up a network.",
"main": "src/index.ts",
"repository": "https://github.com/banurapp/core.git",
"author": "Rishi Kothari <[email protected]>",
"license": "MPL-2.0",
"private": false,
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.8",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"apollo-server": "^2.17.0",
"bcrypt": "^5.0.0",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"graphql-redis-subscriptions": "^2.3.1",
"graphql-subscriptions": "^1.1.0",
"pg": "^8.3.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.3.5",
"ts-node": "^9.0.0",
"type-graphql": "^1.0.0",
"typedi": "^0.8.0",
"typeorm": "^0.2.26",
"typescript": "^4.0.2"
},
"devDependencies": {
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-wesbos": "^1.0.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-react-hooks": "1.7.0",
"husky": "^4.3.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"prettier-eslint": "^11.0.0"
},
"scripts": {
"dev": "nodemon src/index.ts",
"format": "prettier --single-quote --write 'src/**/*'",
"format:check": "prettier --single-quote --check 'src/**/*'",
"lint": "eslint \"src/**/*.{js,ts}\" --quiet --fix",
"lint:check": "eslint \"src/**/*.{js,ts}\" --quiet",
"check": "yarn run format:check && yarn run lint:check",
"check:fix": "yarn run format && yarn run lint"
},
"husky": {
"hooks": {
"pre-push": "yarn lint:check && yarn format:check"
}
}
}