generated from mrtousif/reddit-clone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.01 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
{
"name": "turborepo-reddit-clone",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"clean": "turbo run clean --parallel",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint --parallel",
"test:ci": "turbo run test:ci",
"graph": "turbo run build --graph",
"format": "prettier --write \"**/*.{js,ts,tsx,md,prisma}\"",
"prepare": "husky install",
"hasura": "hasura --envfile ../../.env.dev --project ./apps/hasura --skip-update-check",
"hasura:console": "npm run hasura console",
"hasura:apply": "npm run hasura migrate apply",
"knip": "knip"
},
"devDependencies": {
"@babel/plugin-transform-flow-strip-types": "7.18.9",
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@faker-js/faker": "7.5.0",
"@trivago/prettier-plugin-sort-imports": "3.3.1",
"concurrently": "8.2.2",
"cross-env": "^7.0.3",
"docker-compose": "0.23.19",
"eslint-config-custom": "workspace:*",
"hasura-cli": "2.28.0",
"https-localhost": "4.7.1",
"husky": "8.0.3",
"is-port-reachable": "3.1.0",
"knip": "^1.14.2",
"lint-staged": "13.1.2",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"tsc-alias": "1.7.0",
"turbo": "1.10.14"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md,prisma}": [
"prettier --write"
],
"src/**/*.{js,jsx,ts,tsx,json}": [
"eslint --max-warnings=0"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"dotenv-cli": "^7.2.1"
}
}