-
Notifications
You must be signed in to change notification settings - Fork 281
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "shuffle-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run watch --parallel",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test -- run --coverage",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/sinon": "^17.0.3",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"rollup": "^4.24.4",
"sinon": "^19.0.2",
"turbo": "^2.2.3",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"engines": {
"npm": ">=10.9.0",
"node": ">=22.10.0"
},
"packageManager": "yarn@4.5.1"
}