-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
{
"name": "compiling-uncompilable",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"runtimes/node/*",
"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.24.1",
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"ava": "4.3.3",
"eslint": "8.23.1",
"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.8.0-dev.20220729"
},
"engines": {
"node": ">=14.0.0"
},
"volta": {
"node": "18.3.0",
"yarn": "1.22.19"
}
}