-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 899 Bytes
/
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
{
"name": "hareshi",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@7.9.0",
"description": "",
"author": "",
"license": "MIT",
"repository": "https://github.com/hareshi/hareshi",
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "dotenv -- turbo run dev --parallel",
"build": "dotenv -- turbo run build",
"start": "dotenv -- turbo run start",
"start:prod": "dotenv -- turbo run start:prod",
"lint": "eslint . --fix",
"fmt:check": "prettier --check .",
"fmt": "prettier --write ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"dotenv": "16.0.1",
"dotenv-cli": "6.0.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"turbo": "1.4.3",
"typescript": "4.7.4"
}
}