-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.25 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@juntossomosmais/time-out-market",
"description": "A market of shared JavaScript libraries to help you save time and effort",
"license": "MIT",
"private": true,
"npmClient": "npm",
"engines": {
"yarn": "please-use-npm",
"npm": ">=8.x",
"node": ">=16.x"
},
"workspaces": [
"packages/*"
],
"scripts": {
"pre-commit": "lint-staged",
"start": "npx nx run-many --target=start --maxParallel=10",
"test": "npx nx run-many --target=test --parallel",
"test:ci": "npx nx affected --target=test:ci --base=origin/main --parallel",
"test:ci-merge": "npx nx affected --target=test:ci --base=origin/main~1 --head=origin/main --parallel"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@juntossomosmais/atomium-tokens": "^2.0.0",
"@nx/jest": "20.3.0",
"@nx/js": "20.3.0",
"@nx/vite": "20.3.0",
"@nx/web": "20.3.0",
"@nx/workspace": "20.3.0",
"@swc-node/register": "~1.10.9",
"@swc/core": "~1.10.3",
"@swc/helpers": "~0.5.15",
"@types/jest": "^29.5.14",
"@types/node": "22.10.2",
"@types/object-hash": "^3.0.6",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"babel-loader": "^9.2.1",
"eslint": "^8.57.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-sonarjs": "^3.0.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.11",
"nx": "20.3.0",
"prettier": "3.4.2",
"stylelint": "^15.11.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-order": "^6.0.4",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vite-plugin-dts": "^4.4.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
],
"*.scss": [
"stylelint --fix"
]
},
"dependencies": {
"object-hash": "^3.0.0",
"pako": "^2.1.0",
"tslib": "^2.8.1"
}
}