forked from tutors-sdk/tutors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 972 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
{
"name": "tutors",
"repository": "https://github.com/tutors-sdk/tutors.git",
"author": "Jordan Harrison <[email protected]>",
"license": "MIT",
"version": "0.2.0",
"private": true,
"workspaces": [
"apps/*",
"components/*",
"sites/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"reader": "turbo run dev --filter tutors-course-reader",
"time": "turbo run dev --filter tutors-time-reader",
"lint": "turbo run lint",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"accessibility-checker": "^3.1.38",
"eslint": "^8.24.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"prettier-plugin-tailwindcss": "^0.1.11",
"turbo": "latest",
"typescript": "4.8.3"
}
}