-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 999 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
{
"name": "shuriken",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"clean": "rm -rf node_modules && npm cache verify",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"eslint:check": "turbo run lint:check",
"eslint:fix": "turbo run lint",
"format:fix": "npm run prettier:fix",
"format:check": "npm run prettier:check",
"lint": "npm run lint:fix",
"lint:fix": "npm run eslint:fix && npm run format:fix",
"lint:check": "npm run eslint:check && npm run format:check",
"prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
"prettier:check": "prettier --check \"**/*.{js,jsx,ts,tsx,md,mdx}\""
},
"devDependencies": {
"eslint-config-coderdojobraga": "*",
"prettier": "latest",
"prettier-plugin-tailwindcss": "latest",
"turbo": "^1.8.3"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16 <17"
},
"packageManager": "[email protected]"
}