forked from SiloCityLabs/SiloCityPages
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.48 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.48 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "codrcg.com",
"version": "3.0.0",
"license": "CC-BY-NC-SA-4.0",
"packageManager": "pnpm@10.13.1",
"scripts": {
"build": "pnpm run build:workspaces && next build && next-sitemap",
"build:turbo": "pnpm run --recursive --if-present build && next build --turbo",
"build:workspaces": "pnpm run --filter \"./packages/*\" build",
"build:app": "next build && next-sitemap",
"build:app:turbo": "next build --turbo && next-sitemap",
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"lint": "pnpm run build:workspaces && next lint",
"lint:app": "next lint",
"prepare": "husky",
"prettier": "prettier --write .",
"qlint": "pnpm run build:workspaces && next lint --quiet",
"start": "next start",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@silocitypages/data-access": "workspace:^1.0.0",
"@silocitypages/eslint-config": "workspace:^1.0.0",
"@silocitypages/ui-core": "workspace:^1.0.0",
"@silocitypages/utils": "workspace:^1.0.0",
"bootstrap": "^5.3.3",
"joi": "^17.13.3",
"next": "^15.3.3",
"react": "^19.0.0",
"react-bootstrap": "^2.10.9",
"react-content-loader": "^7.0.2",
"react-dom": "^19.0.0",
"react-select": "^5.10.1",
"react-wheel-of-prizes-react19": "^1.0.13",
"schema-dts": "^1.1.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.14",
"@types/pouchdb": "^6.4.2",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@types/react-test-renderer": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.23.0",
"eslint-config-next": "15.3.1",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.5.1",
"next-sitemap": "^4.2.3",
"postcss": "^8",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,html,yaml,yml,mjs}": [
"prettier --write"
]
}
}