generated from theholocron/react-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.96 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@theholocron/nextjs-template",
"version": "1.4.0",
"description": "<description>",
"homepage": "https://github.com/theholocron/nextjs-template#readme",
"bugs": {
"url": "https://github.com/theholocron/nextjs-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theholocron/nextjs-template.git"
},
"license": "GPL-3.0",
"author": {
"name": "Newton Koumantzelis"
},
"type": "module",
"exports": {
".": {
"import": "./dist/nextjs-template.es.js",
"require": "./dist/nextjs-template.cjs.js"
},
"./style": "./dist/style.css"
},
"main": "dist/nextjs-template.cjs.js",
"module": "dist/nextjs-template.es.js",
"types": "dist/index.d.ts",
"style": "dist/style.css",
"files": [
"dist/*"
],
"scripts": {
"build": "next build",
"build:storybook": "storybook build --output-dir docs",
"dev": "next dev",
"lint": "docker run -e LOG_LEVEL=DEBUG -e RUN_LOCAL=true -v .:/tmp/lint --rm ghcr.io/super-linter/super-linter:latest",
"prepare": "husky",
"start": "next start",
"start:storybook": "storybook dev -p 6006",
"test": "vitest",
"test:cypress": "cypress open",
"test:storybook": "test-storybook --coverage"
},
"dependencies": {
"@next/bundle-analyzer": "^15.0.3",
"next": "^14"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@codesandbox/storybook-addon": "^0.2.0",
"@storybook/addon-a11y": "^8.4.2",
"@storybook/addon-coverage": "^1.0.4",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-links": "^8.4.2",
"@storybook/nextjs": "^8.2.5",
"@theholocron/commitlint-config": "^3.5.1",
"@theholocron/eslint-config": "^3.5.1",
"@theholocron/jest-config": "^3.5.1",
"@theholocron/lint-staged-config": "^3.5.1",
"@theholocron/prettier-config": "^3.5.1",
"@theholocron/storybook-config": "^3.5.1",
"@theholocron/stylelint-config": "^3.5.1",
"@theholocron/tsconfig": "^3.5.1",
"@tsconfig/next": "^2.0.3",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.2",
"@whitespace/storybook-addon-html": "^6.1.1",
"alexjs": "^1.0.0",
"react": "^18",
"react-dom": "^18",
"vite": "^5.4.9"
},
"peerDependencies": {
"next": "^14",
"react": "^18",
"react-dom": "^18"
},
"packageManager": "npm@9.5.0",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"publishConfig": {
"access": "public"
},
"bundlewatch": {
"files": [
{
"path": "./.next/static/css/*.css",
"maxSize": "50 kB"
},
{
"path": "./.next/static/chunks/*.js",
"maxSize": "100 kB"
}
]
},
"msw": {
"workerDirectory": [
"public"
]
},
"releases": "https://github.com/theholocron/nextjs-template/releases",
"wiki": "https://github.com/theholocron/nextjs-template/wiki"
}