-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "portfolio_nextjs",
"version": "1.0.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"babel-plugin-inline-react-svg": "^2.0.1",
"next": "10.2.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-ga4": "^1.0.4",
"react-icons": "^4.2.0",
"recoil": "^0.3.1",
"styled-components": "^5.3.0",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@storybook/react": "^6.3.4",
"@types/node": "^16.3.2",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"babel-loader": "^8.2.2",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"eslint --config packages/core/.eslintrc.json --fix-dry-run"
]
}
}