-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "bashkim-com",
"private": true,
"description": "Portfolio of case studies by Bashkim Isai",
"repository": "github:bashaus/bashkim-com",
"license": "UNLICENSED",
"author": {
"name": "Bashkim Isai",
"url": "https://www.bashkim.com/"
},
"type": "module",
"workspaces": [
"packages/*",
"turbo/"
],
"scripts": {
"build": "turbo run build",
"check-updates": "npm-check-updates",
"codegen": "turbo run codegen",
"compile": "turbo run compile",
"dev": "turbo run dev codegen:dev",
"lint": "eslint . && turbo run lint",
"prepare": "pre-commit install || true",
"storybook:build": "turbo run storybook:build",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e"
},
"devDependencies": {
"@bashkim-com/eslint": "*",
"@swc/core": "^1.15.8",
"@turbo/gen": "^2.9.5",
"@types/node": "^25.5.0",
"eslint": "^9.39.2",
"npm-check-updates": "^19.2.0",
"prettier": "3.8.1",
"prettier-plugin-packagejson": "3.0.2",
"sass": "^1.98.0",
"ts-node": "10.9.2",
"turbo": "^2.9.14",
"typescript": "^6.0.2"
},
"packageManager": "npm@11.7.0"
}