-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 4.28 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
{
"version": "0.1.0",
"name": "next-demo",
"private": true,
"scripts": {
"dev": "next dev",
"analyze": "cross-env ANALYZE=true NODE_ENV=production next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"analyze:size": "cross-env ANALYZE=true NODE_ENV=production next build && node scripts/analyze-bundles.js",
"build": "next build",
"build:sourcemap": "cross-env GENERATE_SOURCEMAP=true next build",
"build:analyze": "yarn build:sourcemap && yarn analyze",
"start": "next start",
"lint": "echo \"Linting... \" && next lint && yarn lint:css",
"lint:css": "stylelint **/*.{scss,css}",
"lint:css:fix": "stylelint --fix **/*.{scss,css}",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook -s public",
"test": "echo \"Running unit tests... \" && yarn test:unit && yarn test:e2e && yarn test:visual",
"test:update": "echo \"Running unit tests... \" && yarn test:unit:update && yarn test:e2e:update && yarn test:visual:update",
"test:unit": "echo \"Running unit tests... \" && jest",
"test:unit:update": "echo \"Running unit tests... \" && jest --updateSnapshot",
"test:unit:coverage": "echo \"Generating coverage report... \" && jest --coverage ./src",
"test:e2e": "echo \"Running e2e tests... \" && playwright test",
"test:e2e:update": "echo \"Updating e2e snapshots... \" && playwright test --update-snapshots",
"test:visual": "echo \"Running visual tests... \" && cross-env VISUAL=true playwright test",
"test:visual:update": "echo \"Running visual tests... \" && cross-env VISUAL=true playwright test --update-snapshots",
"check-circular-deps": "echo \"Checking for Circular dependencies... \" && madge --circular --extensions ts ./",
"prepare": "husky install && playwright install-deps",
"commit": "cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"webpack": "^5"
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@kodingdotninja/use-tailwind-breakpoint": "^0.0.5",
"clsx": "^1.1.1",
"cntl": "^1.0.0",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rooks": "^5.10.3",
"usehooks-ts": "^2.4.2"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@next/bundle-analyzer": "^12.1.0",
"@next/eslint-plugin-next": "^12.1.0",
"@playwright/test": "^1.19.2",
"@storybook/addon-a11y": "^6.4.19",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-storyshots": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/node": "17.0.19",
"@types/react": "17.0.39",
"@types/tailwindcss": "^3.0.10",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.9.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-redundant-undefined": "^0.2.0",
"eslint-plugin-sonarjs": "^0.12.0",
"eslint-plugin-storybook": "^0.5.7",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"import": "^0.0.6",
"jest": "^27.5.1",
"madge": "^5.0.1",
"postcss": "^8.4.8",
"postcss-loader": "^6.2.1",
"prettier": "^2.6.0",
"prettier-plugin-tailwindcss": "^0.1.8",
"react-test-renderer": "^17.0.2",
"stylelint": "^14.5.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-webpack-plugin": "^3.1.1",
"tailwindcss": "^3.0.23",
"typescript": "4.5.5"
}
}