-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "microludes",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"db:migrate:deploy": "turbo run db:migrate:deploy",
"db:push": "turbo run db:push",
"db:seed": "turbo run db:seed",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate": "turbo run generate",
"lint": "turbo run lint",
"pre-commit": "lint-staged",
"prepare": "is-ci || husky install",
"test": "turbo run test"
},
"devDependencies": {
"@changesets/changelog-git": "0.1.12",
"@changesets/changelog-github": "0.4.6",
"@changesets/cli": "2.25.1",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"ava": "4.3.1",
"eslint": "8.22.0",
"esm": "3.2.25",
"husky": "8.0.1",
"is-ci": "3.0.1",
"jshint": "2.13.5",
"lint-staged": "13.0.3",
"prettier-config": "*",
"rome": "next",
"tsx": "3.8.0",
"turbo": "latest",
"typescript": "4.9.3"
},
"engines": {
"node": ">=16.0.0"
},
"volta": {
"node": "18.3.0",
"yarn": "1.22.19"
},
"prisma": {
"schema": "packages/database-prisma/prisma/schema.prisma",
"seed": "tsx packages/database-prisma/src/seed.ts"
}
}