-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
104 lines (104 loc) · 3.12 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
{
"name": "clean-architecture-nextjs-react-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"build-storybook": "storybook build",
"storybook": "storybook dev -p 6006",
"start": "next start",
"lint": "next lint && stylelint --allow-empty-input \"**/*.{css,scss}\"",
"prepare": "husky install",
"test": "jest",
"test:e2e": "TS_NODE_PROJECT='./tsconfig.cucumber.json' cucumber-js",
"test:mutate": "stryker run"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"src/**/*.{css,scss}": [
"prettier --write",
"stylelint --allow-empty-input \"**/*.{css,scss}\""
]
},
"dependencies": {
"axios": "^1.6.8",
"inversify": "^6.0.2",
"next": "14.2.0-canary.60",
"next-auth": "^4.24.7",
"next-themes": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.1",
"@cucumber/cucumber": "^10.3.2",
"@next/eslint-plugin-next": "^14.1.4",
"@playwright/test": "^1.43.0",
"@storybook/addon-essentials": "^8.0.6",
"@storybook/addon-interactions": "^8.0.6",
"@storybook/addon-links": "^8.0.6",
"@storybook/addon-onboarding": "^8.0.6",
"@storybook/addon-styling": "^2.0.2-next.4",
"@storybook/blocks": "^8.0.6",
"@storybook/nextjs": "^8.0.6",
"@storybook/react": "^8.0.6",
"@storybook/test": "^8.0.6",
"@storybook/testing-library": "^0.2.2",
"@stryker-mutator/core": "^7.3.0",
"@stryker-mutator/jest-runner": "^7.3.0",
"@testing-library/jest-dom": "^6.4.1",
"@testing-library/react": "^14.2.1",
"@types/css-modules": "^1.0.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.9.0",
"@types/react": "^18.2.51",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-export-scope": "^2.3.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^6.1.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.0.2",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"sass": "^1.69.5",
"storybook": "^8.0.6",
"stylelint": "^15.11.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-order": "^6.0.3",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"Chrome 118",
"last 1 chrome version",
"last 1 edge version",
"last 1 firefox version",
"last 1 safari version"
]
}
}