-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
52
{
"name": "custom-scripting",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"preview": "turbo run preview",
"format": "prettier --write .",
"prepare": "husky install",
"test": "turbo run test"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.1.2",
"babel-jest": "^29.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^8.0.0",
"eslint-config-custom": "*",
"husky": "^8.0.1",
"jest": "^29.1.2",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"mockdate": "^3.0.5",
"node-fetch": "^2.6",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"ts-jest": "^29.0.3",
"turbo": "latest",
"typescript": "^4.8.4"
},
"lint-staged": {
"!(*d).ts": [
"eslint --fix --max-warnings 0"
],
"*.{json,js,ts,css,scss,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}