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
85 lines (85 loc) · 2.86 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
{
"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.17.5",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.0.0",
"@poooi/coveralls": "^3.0.7",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-storyshots": "^6.4.19",
"@storybook/addons": "^6.4.14",
"@storybook/react": "^6.4.19",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/classnames": "^2.3.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/random": "^3.0.1",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-typist": "^2.0.3",
"@types/semver": "^7.3.9",
"@types/styled-components": "^5.1.23",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"babel-plugin-macros": "^3.1.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"identity-obj-proxy": "3.0.0",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.3.1",
"jest-junit": "^13.0.0",
"jest-resolve": "27.5.1",
"jest-styled-components": "^7.0.8",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"react-test-renderer": "^17.0.2",
"snapshot-diff": "^0.9.0",
"source-map-explorer": "^2.5.2",
"start-server-and-test": "^1.14.0",
"typescript": "^4.5.5"
},
"workspaces": [
"packages/*"
]
}