-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.01 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/utrad-ical/circus.git"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=7.14.0"
},
"workspaces": {
"packages": [
"./packages/*"
]
},
"scripts": {
"test": "jest",
"build": "npm run build --if-present --workspaces",
"lint": "eslint \"packages/*/{src,test}/**/*.{js,ts,tsx}\"",
"lint-fix": "eslint --fix \"packages/*/{src,test}/**/*.{js,ts,tsx}\"",
"lint-prettier": "prettier --check \"packages/*/{src,test}/**/*.{js,ts,less,json,yaml,yml}\"",
"prettier": "prettier --write \"packages/*/{src,test}/**/*.{js,ts,less,json,yaml,yml}\"",
"prebuild-ts": "cd packages/circus-rs && npm run prebuild",
"build-ts": "tsc -b",
"postbuild-ts": "cd packages/circus-rs && npm run postbuild",
"typecheck": "npm run typecheck --if-present --workspaces"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"babel-plugin-react-compiler": "^19.0.0-beta-a7bf2bd-20241110",
"dotenv": "^16.0.3",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.8.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-a7bf2bd-20241110",
"eslint-plugin-react-hooks": "^4.6.2",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"react-compiler-runtime": "^19.0.0-beta-a7bf2bd-20241110",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!@utrad-ical/circus-(rs|cs-core|lib)/src)"
],
"setupFiles": [
"dotenv/config"
],
"testEnvironment": "node",
"testTimeout": 10000
}
}