-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.56 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
{
"name": "aphrodite",
"private": true,
"scripts": {
"dev": "node server",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@types/react-dom": "^17.0.11",
"@types/react-portal": "^4.0.4",
"axios": "^0.25.0",
"css-mediaquery": "^0.1.2",
"dotenv": "^16.0.0",
"formik": "^2.2.9",
"global": "^4.4.0",
"lodash": "^4.17.21",
"next": "^12.0.8",
"react": "17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "^17.0.2",
"recoil": "^0.6.1",
"styled-components": "^5.3.3",
"styled-normalize": "^8.0.7",
"swr": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@types/gtag.js": "^0.0.8",
"@types/lodash": "^4.14.178",
"@types/node": "17.0.8",
"@types/react": "17.0.38",
"@types/styled-components": "^5.1.20",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"babel-eslint": "9",
"babel-plugin-styled-components": "^2.0.2",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "4.3.8",
"husky-init": "^7.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
}
}