-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
85 lines (85 loc) · 2.45 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
{
"name": "pizzaql",
"version": "1.0.0",
"description": "Modern order placement and management system.",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"test": "xo && stylelint './**/*.ts'"
},
"engines": {
"node": "12.x"
},
"xo": {
"envs": [
"node",
"browser"
],
"extends": [
"xo-typescript",
"xo-react"
],
"rules": {
"import/no-unassigned-import": "off",
"import/extensions": "off",
"unicorn/string-content": "off",
"unicorn/no-reduce": "off",
"no-mixed-operators": "off",
"node/no-unsupported-features/es-syntax": "off",
"@typescript-eslint/prefer-readonly-parameter-types": "off",
"@typescript-eslint/restrict-template-expressions": "off"
},
"settings": {
"react": {
"version": "16.13"
}
},
"extensions": [
"tsx",
"ts"
],
"ignores": [
"babel.config.js",
"next.config.js",
"public/embed.js"
]
},
"dependencies": {
"@apollo/client": "^3.3.6",
"@chakra-ui/react": "1.1.2",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"core-js": "^3.8.2",
"date-fns": "^2.16.1",
"framer-motion": "^3.2.1",
"graphql": "^15.4.0",
"next": "^10.0.5",
"next-translate": "^1.0.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "^6.14.1",
"react-icons": "^4.1.0",
"recoil": "0.1.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@emotion/babel-plugin": "^11.1.2",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-config-xo-typescript": "^0.37.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-svgo": "^8.0.0",
"next-offline": "^5.0.3",
"next-optimized-images": "^2.6.2",
"stylelint": "^13.8.0",
"stylelint-config-recommended": "^3.0.0",
"typescript": "^4.1.3",
"xo": "^0.37.1"
}
}