-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.15 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
{
"name": "ashharrison90.github.io",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"lint": "eslint --fix --ext .ts,.tsx . && stylelint --fix **/*.scss && prettier --write .",
"prepare": "husky install",
"serve": "serve out",
"start": "next dev",
"test": "vitest run --coverage",
"test-e2e": "npx playwright test __test__/e2e --browser=all",
"test-e2e-ci": "start-server-and-test serve http://localhost:3000 test-e2e",
"test-e2e-headed": "PWDEBUG=1 npx playwright test __test__/e2e --headed",
"test-lighthouse": "lhci autorun",
"typecheck": "tsc --noEmit",
"storybook": "storybook dev"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@fortawesome/fontawesome-free": "^6.1.2",
"@lhci/cli": "^0.10.0",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.3",
"@playwright/test": "^1.25.0",
"@storybook/addon-actions": "^7.0.2",
"@storybook/addon-essentials": "^7.5.0",
"@storybook/addon-links": "^7.0.2",
"@storybook/addon-mdx-gfm": "^7.0.2",
"@storybook/nextjs": "^7.5.3",
"@storybook/react": "^7.5.3",
"@svgr/webpack": "^8.0.1",
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^6.1.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/mdx": "^2.0.2",
"@types/node": "^20.1.0",
"@types/randomcolor": "^0.5.6",
"@types/react": "^18.0.17",
"@types/react-highlight-words": "^0.16.4",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.0",
"babel-loader": "^9.0.0",
"classnames": "^2.3.1",
"css-loader": "^6.7.1",
"eslint": "^8.35.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"gsap": "^3.12.2",
"highlight.js": "^11.6.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^24.1.0",
"lint-staged": "^15.0.2",
"next": "^14.1.1",
"playwright": "^1.25.0",
"postcss": "^8.4.31",
"prettier": "^3.0.0",
"randomcolor": "^0.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-highlight-words": "^0.18.0",
"remark-gfm": "^4.0.0",
"sass": "^1.54.4",
"sass-loader": "^14.0.0",
"serve": "^14.1.2",
"start-server-and-test": "^2.0.3",
"storybook": "^7.5.0",
"storybook-dark-mode": "^3.0.0",
"style-loader": "^3.3.1",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-scss": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"typewriter-effect": "^2.21.0",
"util": "^0.12.5",
"vite-plugin-magical-svg": "^1.2.1",
"vitest": "^1.6.0",
"vitest-fail-on-console": "^0.7.0",
"webpack": "^5.94.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --ext .ts,.tsx --fix"
],
"*.scss": "stylelint --fix",
"*": [
"prettier --write"
]
}
}