-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"name": "widget-framework-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"apexcharts": "^3.23.0",
"axios": "^0.21.0",
"classnames": "^2.2.6",
"d3-format": "^2.0.0",
"date-fns": "^2.16.1",
"lodash": "^4.17.20",
"next": "10.0.3",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-html-parser": "^2.0.2",
"react-query": "^3.3.0",
"react-select": "^3.1.1",
"recharts": "^1.8.5",
"reselect": "^4.0.0",
"sass": "^1.30.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"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-security": "^1.4.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.scss": "stylelint --config .stylelintrc.json",
"*.{js,jsx}": [
"prettier --parser flow --write --single-quote",
"eslint --ext .js --ext .jsx --fix"
]
},
"cacheDirectories": [
".next/cache"
]
}