forked from aesthytik/developer-dao
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.08 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.08 KB
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
{
"name": "developer-dao",
"version": "0.2.1",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/inter": "^4.5.0",
"@fontsource/source-code-pro": "^4.5.0",
"@react-hook/window-size": "^3.0.7",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"framer-motion": "^4",
"jest": "^27.2.0",
"next": "^11.1.2",
"next-i18next": "^8.8.0",
"next-plausible": "^3.1.4",
"react": "^17.0.2",
"react-confetti": "^6.0.1",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "next start",
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"e2e": "cypress run",
"e2e:watch": "cypress open",
"fmt": "prettier --write **/*.js",
"prepare": "husky install",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch --detectOpenHandles"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/cypress": "^8.0.1",
"@testing-library/react-hooks": "^7.0.2",
"all-contributors-cli": "^6.20.0",
"cypress": "^8.4.1",
"eslint": "^7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "2.3.2",
"typechain": "^6.0.2",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,html,graphql}": "prettier --write"
}
}