-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 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
64
65
{
"name": "@rishiosaur/hn",
"version": "0.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"dependencies": {
"@types/big.js": "^6.0.2",
"apollo-server": "^2.19.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"big.js": "^6.1.0",
"class-validator": "^0.12.2",
"dotenv": "^8.2.0",
"pg": "^8.4.2",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.0.0",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.29",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.8",
"@types/node": "^14.14.6",
"@types/react": "^16.9.49",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"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.6",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0"
},
"scripts": {
"dev": "nodemon -w src --ext ts --exec ts-node -r dotenv/config src/index.ts",
"build": "tsc --outDir dist --allowJs",
"start": "ts-node -r dotenv/config src/index.ts",
"format": "prettier --single-quote --write './**/*'",
"format:check": "prettier --single-quote --check './**/*'",
"lint": "eslint \"./**/*.{js,ts,tsx,jsx}\" --quiet --fix",
"lint:check": "eslint \"./**/*.{js,ts,tsx,jsx}\" --quiet",
"check": "yarn run format:check && yarn run lint:check",
"check:fix": "yarn run format && yarn run lint",
"prepublish": "tsc",
"release": "release-it"
},
"husky": {
"hooks": {
"pre-push": "yarn run check:fix"
}
},
"publishConfig": {
"access": "public"
}
}