-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.07 KB
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
{
"name": "irene-react",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"scripts": {
"build": "turbo build",
"build:test": "turbo build:test",
"build:icons": "pnpm --filter @irene/ui build-icons",
"dev": "turbo dev",
"start": "cross-env IRENE_API_HOST=http://localhost:8000 turbo dev",
"startstaging": "cross-env IRENE_API_HOST=https://api.appknox.io turbo dev",
"startprod": "cross-env IRENE_API_HOST=https://api.appknox.com turbo dev",
"storybook": "pnpm --filter @irene/ui storybook",
"build-storybook": "pnpm --filter @irene/ui build-storybook",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:css": "stylelint \"**/*.{css,scss}\"",
"lint:css:fix": "stylelint \"**/*.{css,scss}\" --fix",
"lint:types": "turbo type-check",
"test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"",
"test:unit": "turbo test",
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser chrome",
"netlify:deploy": "netlify deploy --dir apps/dashboard/dist",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,md}\""
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.7",
"@vitest/coverage-v8": "^5.0.0",
"concurrently": "^10.0.5",
"cross-env": "^10.1.0",
"eslint": "^10.10.0",
"eslint-plugin-better-tailwindcss": "^4.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.6",
"globals": "^17.12.0",
"jsdom": "^30.0.1",
"prettier": "^3.9.6",
"stylelint": "^17.15.0",
"stylelint-config-standard-scss": "^17.0.0",
"tailwindcss": "^4.3.3",
"turbo": "^2.10.12",
"typescript": "^6.0.3",
"typescript-eslint": "^8.70.0",
"vitest": "^5.0.0"
}
}