-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.4 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
{
"babelMacros": {
"twin": {
"preset": "emotion"
}
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"g": "new-component",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "next lint --max-warnings 0",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"storybook": "start-storybook -p 6006 --no-open",
"storybook:build": "build-storybook",
"storybook:test": "test-storybook",
"storybook:ci": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"yarn build-storybook --quiet && npx http-server storybook-static --port 6006 --silent\" \"wait-on tcp:6006 && yarn storybook:test\""
},
"dependencies": {
"@emotion/css": "^11.9.0",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"next": "^12.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@emotion/babel-plugin": "^11.9.2",
"@freddydumont/new-component": "^1.0.1",
"@storybook/addon-a11y": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/test-runner": "^0.1.1",
"@storybook/testing-library": "^0.0.13",
"@testing-library/cypress": "^8.0.3",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-loader": "^8.2.5",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-twin": "^1.0.2",
"concurrently": "^7.2.2",
"cypress": "^10.1.0",
"eslint": "^8.18.0",
"eslint-config-next": "^12.1.6",
"eslint-plugin-storybook": "^0.5.12",
"http-server": "^14.1.1",
"jest": "^27.5.1",
"prettier": "^2.7.1",
"storybook-addon-next": "^1.6.6",
"storybook-dark-mode": "^1.1.0",
"tailwindcss": "^2.2.19",
"twin.macro": "^2.8.2",
"typescript": "^4.7.4",
"wait-on": "^6.0.1",
"webpack": "^5.73.0"
},
"version": "0.0.0"
}