This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.89 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "source-map-explorer 'build/_next/**/*.js'",
"lint": "eslint packages --ext .ts --ext .tsx --fix",
"dev": "next dev packages/web",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"wrangler:dev": "wrangler dev --port 3000",
"miniflare:dev": "miniflare --port 3000",
"test:e2e": "start-server-and-test dev http://127.0.0.1:3000 'yarn workspace integration playwright test'",
"test:integration-miniflare": "start-server-and-test miniflare:dev http://127.0.0.1:3000 'yarn workspace integration playwright test'",
"test:integration": "start-server-and-test wrangler:dev http://127.0.0.1:3000 'yarn workspace integration playwright test'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@poooi/coveralls": "^3.0.7",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-links": "^6.5.10",
"@storybook/addon-storyshots": "^6.5.10",
"@storybook/addons": "^6.5.12",
"@storybook/react": "^6.5.10",
"@testing-library/dom": "^8.18.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/classnames": "^2.3.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.7",
"@types/lodash": "^4.14.186",
"@types/random": "^3.0.1",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-typist": "^2.0.3",
"@types/semver": "^7.3.12",
"@types/styled-components": "^5.1.26",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.35.1",
"babel-jest": "^29.1.2",
"babel-loader": "^8.2.5",
"babel-plugin-macros": "^3.1.0",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "^28.1.3",
"jest-canvas-mock": "^2.4.0",
"jest-junit": "^14.0.0",
"jest-resolve": "28.1.3",
"jest-styled-components": "^7.1.1",
"jest-watch-typeahead": "^2.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"snapshot-diff": "^0.9.0",
"source-map-explorer": "^2.5.3",
"start-server-and-test": "^1.14.0",
"typescript": "^4.8.4"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}