-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.65 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
{
"name": "boilerplate",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "xo",
"lint-fix": "xo --fix",
"test": "yarn run lint"
},
"devDependencies": {
"@zeit/next-sass": "^1.0.1",
"eslint": "^7.6.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"imagemin-optipng": "^8.0.0",
"next-compose-plugins": "^2.2.1",
"next-optimized-images": "^2.6.2",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-font-magician": "^2.3.1",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^1.6.2",
"webpack": "^4.44.1",
"xo": "^0.33.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"next": "^9.5.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-mobile-store-button": "^0.0.6"
},
"husky": {
"hooks": {
"pre-commit": "yarn run test"
}
},
"xo": {
"space": true,
"extends": "xo-react",
"env": [
"browser",
"node"
],
"rules": {
"react/state-in-constructor": [
0
],
"react/prop-types": [
0
],
"react/static-property-placement": [
0
],
"react/no-danger": [
0
],
"import/no-unassigned-import": [
0
]
}
}
}