-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "dcard-clone",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"post-update": "yarn upgrade --latest"
},
"dependencies": {
"modern-normalize": "^1.0.0",
"next": "^10.0.3",
"next-dynamic-loading-props": "^0.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-query": "^3.3.3",
"reakit": "^1.3.2",
"styled-components": "^5.2.1"
},
"license": "MIT",
"keywords": [],
"description": "",
"devDependencies": {
"@testing-library/cypress": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"babel-plugin-styled-components": "^1.12.0",
"cypress": "^6.2.0",
"cypress-real-events": "^1.1.0",
"eslint": "^7.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "2.2.1"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"jsx-a11y/anchor-is-valid": "off",
"no-throw-literal": "off"
}
},
"prettier": {
"singleQuote": true
}
}