-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
108 lines (108 loc) ยท 3.6 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "antoon",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "rimraf public/robots.txt public/sitemap*.xml & next build",
"start": "next start",
"deploy": "sls",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ignore-path .gitignore \"./**/*.{js,ts,tsx}\"",
"lint:stylelint": "stylelint --ignore-path .gitignore \"./**/*.tsx\"",
"lint:prettier": "prettier --ignore-path .gitignore --check \"./**/*.{js,ts,tsx}\"",
"lint-fix": "run-p lint-fix:*",
"lint-fix:eslint": "eslint --fix \"./**/*.{js,ts,tsx}\" --ignore-path .gitignore",
"lint-fix:stylelint": "stylelint --fix \"./**/*.tsx\" --ignore-path .gitignore",
"lint-fix:prettier": "prettier --write \"./**/*.{js,ts,tsx}\" --ignore-path .gitignore",
"postbuild": "next-sitemap --config next-sitemap.config.js"
},
"lint-staged": {
"./**/*.tsx": [
"yarn lint-fix:prettier",
"yarn lint-fix:stylelint",
"yarn lint-fix:eslint"
],
"./**/*.{js,ts}": [
"yarn lint-fix:prettier",
"yarn lint-fix:eslint"
]
},
"dependencies": {
"@emotion/css": "^11.9.0",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@sentry/nextjs": "^6.19.7",
"@svgr/webpack": "^5.5.0",
"axios": "^0.27.2",
"cookies-next": "^2.0.4",
"echarts": "^5.3.2",
"echarts-for-react": "^3.0.2",
"echarts-next-for-react": "^1.1.1",
"json-loader": "^0.5.7",
"mixpanel-browser": "^2.45.0",
"next": "12.1.4",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-intersection-observer": "^9.4.0",
"react-loading-skeleton": "^3.1.0",
"react-query": "^3.34.19",
"react-slick": "^0.29.0",
"react-spinners": "^0.12.0",
"recoil": "^0.7.0",
"sharp": "^0.30.7",
"slick-carousel": "^1.8.1",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@sls-next/aws-cloudfront": "3.6.0",
"@sls-next/aws-lambda": "3.6.0",
"@sls-next/aws-sqs": "3.5.3",
"@sls-next/domain": "3.5.3",
"@sls-next/serverless-component": "3.6.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^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",
"@storybook/testing-library": "^0.0.13",
"@stylelint/postcss-css-in-js": "^0.37.2",
"@types/mixpanel-browser": "^2.38.0",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/react-slick": "^0.23.8",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"babel-loader": "^8.2.4",
"chromatic": "^6.5.3",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.6.11",
"eslint-webpack-plugin": "^3.1.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"next-sitemap": "^3.0.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-syntax": "^0.36.2",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"serverless": "2.72.2",
"stylelint": "^14.6.1",
"stylelint-config-concentric-order": "^5.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-prettier": "^2.0.0",
"stylis": "^4.1.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.6.3",
"typescript-eslint": "^0.0.1-alpha.0"
}
}