-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.71 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
{
"name": "splato.one",
"version": "0.1.0",
"private": true,
"scripts": {
"reveal": "git secret reveal -v",
"hide": "git secret hide -vm",
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir src",
"lint:fix": "yarn lint --fix",
"prettier": "prettier --write './**/*.{js,jsx,ts,tsx,json}'",
"stylelint": "stylelint --fix './**/*.{css,scss,sass}'",
"test": "yarn test:jest && yarn test:e2e",
"test:jest": "jest --updateSnapshot --no-cache",
"test:watch": "jest --watchAll",
"test:e2e": "playwright test",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"gen-types": "npx openapi-typescript $NEXT_PUBLIC_SUPABASE_URL/rest/v1/?apikey=$NEXT_PUBLIC_SUPABASE_ANON_KEY --output src/types/supabase.d.ts",
"chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN",
"prepare": "husky install"
},
"dependencies": {
"@supabase/auth-helpers-nextjs": "^0.4.2",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/auth-ui-react": "^0.2.2",
"@supabase/supabase-js": "^2.0.4",
"next": "13.0.0",
"next-axiom": "^0.15.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@playwright/test": "^1.27.1",
"@storybook/addon-a11y": "^6.5.13",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/addons": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@storybook/theming": "^6.5.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.0",
"@types/node": "18.11.7",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"@whitespace/storybook-addon-html": "^5.0.0",
"babel-loader": "^9.0.0",
"chromatic": "^6.11.2",
"eslint": "8.26.0",
"eslint-config-next": "13.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-storybook": "^0.6.6",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"storybook-addon-next": "^1.6.9",
"storybook-addon-performance": "^0.16.1",
"storybook-dark-mode": "^1.1.2",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^29.0.0",
"typescript": "4.8.4"
}
}