-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.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
{
"name": "shields-craft",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "eslint --ignore-path .gitignore **/*.{js,jsx,ts,tsx} --fix",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@types/color": "^3.0.1",
"clsx": "^1.1.1",
"color": "^3.1.3",
"copy-to-clipboard": "^3.3.1",
"next": "^13.1.6",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-github-corner": "^2.5.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.4",
"simple-icons": "^8.4.0",
"styled-jsx": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@types/node": "^14.14.13",
"@types/react": "^18.0.27",
"@types/simple-icons": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-loader": "^8.2.2",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.6.10",
"prettier": "^2.2.1",
"storybook-addon-next-router": "^4.0.2",
"typescript": "^4.9.5"
}
}