-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "schedulely",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"barrels": "turbo run barrels --no-daemon",
"build-ladle": "turbo run build-ladle --no-daemon",
"rollup": "turbo run rollup --no-daemon",
"ssr-test": "turbo run ssr-test --no-daemon",
"dev": "turbo run dev --no-daemon",
"dev-docs": "turbo run dev-docs --no-daemon",
"lint": "turbo run lint --no-daemon",
"test": "turbo run test --no-daemon",
"test:ci": "turbo run test:ci --no-daemon",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"serve": "turbo run serve --no-daemon"
},
"devDependencies": {
"chance": "^1.1.11",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.10.9",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.0",
"turbo": "^1.10.9",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=16.0.0"
}
}