-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.05 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
{
"name": "yapp-web",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook",
"simple-git-hooks": "simple-git-hooks",
"prepare": "yarn simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@react-spring/web": "^9.7.3",
"@splinetool/react-spline": "^2.2.2",
"@splinetool/runtime": "^0.9.273",
"@types/smoothscroll-polyfill": "^0.3.1",
"glob": "^8.0.1",
"isomorphic-dompurify": "^0.18.0",
"lottie-web": "^5.8.1",
"next": "12.0.9",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-masonry-css": "^1.0.16",
"react-slick": "^0.28.1",
"slick-carousel": "^1.8.1",
"smoothscroll-polyfill": "^0.4.4",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@react-spring/types": "^9.5.2",
"@storybook/addon-actions": "^6.5.0-alpha.39",
"@storybook/addon-essentials": "^6.5.0-alpha.39",
"@storybook/addon-links": "^6.5.0-alpha.39",
"@storybook/builder-webpack5": "^6.5.0-alpha.39",
"@storybook/manager-webpack5": "^6.5.0-alpha.39",
"@storybook/react": "^6.5.0-alpha.39",
"@svgr/webpack": "^6.2.1",
"@types/node": "17.0.13",
"@types/react": "17.0.38",
"@types/react-slick": "^0.23.8",
"@types/styled-components": "^5.1.21",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"babel-loader": "^8.2.3",
"babel-plugin-styled-components": "^2.0.2",
"chromatic": "^6.4.3",
"eslint": "8.8.0",
"eslint-config-next": "12.0.9",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-storybook": "^0.5.6",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"simple-git-hooks": "^2.8.0",
"styled-normalize": "^8.0.7",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.5.5"
}
}