-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
127 lines (127 loc) · 2.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "eventify-client",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shivam123425/eventify-client.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shivam123425/eventify-client/issues"
},
"homepage": "https://github.com/shivam123425/eventify-client#readme",
"dependencies": {
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-ramda": "^2.0.0",
"cogo-toast": "^4.2.3",
"dotenv": "^8.2.0",
"es6-promise": "^4.2.8",
"formik": "^2.1.4",
"immer": "^8.0.1",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.19",
"next": "^9.2.1",
"next-redux-saga": "^4.1.2",
"next-redux-wrapper": "^5.0.0",
"ramda": "^0.27.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-tagsinput": "^3.19.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"styled-components": "^5.0.1"
},
"devDependencies": {
"babel-plugin-module-resolver": "^4.0.0",
"redux-devtools-extension": "^2.13.2"
},
"babel": {
"env": {
"development": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true
}
],
[
"module-resolver",
{
"root": [
"./"
],
"alias": {
"components": "./components",
"modules": "./modules"
}
}
],
[
"ramda",
{
"useES": false
}
],
[
"lodash"
]
]
},
"production": {
"presets": [
"next/babel"
],
"plugins": [
[
"lodash",
{
"id": [
"lodash-es"
]
}
],
[
"styled-components",
{
"ssr": true,
"displayName": true
}
],
[
"module-resolver",
{
"root": [
"./"
],
"alias": {
"components": "./components"
}
}
],
[
"ramda",
{
"useES": false
}
]
]
}
}
}
}