-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.79 KB
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
{
"name": "osr-tools",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"prepare": "husky install",
"format:write": "prettier --write '**/*.{css,js,json,jsx,ts,tsx}'",
"format": "prettier '**/*.{css,js,json,jsx,ts,tsx}'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@headlessui/react": "^1.7.11",
"@heroicons/react": "^2.0.16",
"@next/font": "13.1.6",
"@types/node": "18.14",
"@types/react": "18.0",
"@types/react-dom": "18.0",
"next": "13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.5"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@storybook/addon-actions": "^6.5",
"@storybook/addon-essentials": "^6.5",
"@storybook/addon-interactions": "^6.5",
"@storybook/addon-links": "^6.5",
"@storybook/builder-webpack5": "^6.5",
"@storybook/manager-webpack5": "^6.5",
"@storybook/react": "^6.5",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.1",
"@testing-library/react": "^14.0",
"autoprefixer": "^10.4",
"babel-loader": "^9.1",
"eslint": "^8.34",
"eslint-config-next": "^13.1",
"eslint-config-prettier": "^8.6",
"eslint-plugin-storybook": "^0.6.10",
"husky": "^8.0",
"jest": "^29.4",
"jest-environment-jsdom": "^29.4",
"lint-staged": "^13.1",
"plop": "^3.1",
"postcss": "^8.4",
"postcss-loader": "^7.0.2",
"prettier": "2.8",
"prettier-plugin-tailwindcss": "^0.2",
"storybook-addon-next": "^1.7",
"tailwindcss": "^3.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}