forked from epleaner/emotions-wheel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.9 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
{
"name": "emotions-wheel",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/epleaner/emotions-wheel.git",
"author": "Eli <eli.i.pleaner@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "yarn start",
"start": "now dev",
"build": "next build",
"serve": "next start",
"test": "jest",
"env": "now env pull",
"now": "now",
"prod": "now --prod",
"db:reset": "node src/helpers/db/reset",
"db:seed": "node src/helpers/db/seed",
"cypress:open": "cypress open"
},
"dependencies": {
"@chakra-ui/core": "^0.7.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@sendgrid/mail": "^7.0.0",
"@theme-ui/typography": "^0.3.0",
"bcryptjs": "^2.4.3",
"chroma-js": "^2.1.0",
"connect-mongo": "^3.2.0",
"d3-array": "^2.4.0",
"d3-axis": "^1.0.12",
"d3-ease": "^1.0.6",
"d3-force": "^2.0.1",
"d3-format": "^1.4.4",
"d3-hierarchy": "^1.1.9",
"d3-interpolate": "^1.4.0",
"d3-scale": "^3.2.1",
"d3-scale-chromatic": "^1.5.0",
"d3-selection": "^1.4.1",
"d3-shape": "^1.3.7",
"d3-time": "^1.1.0",
"d3-time-format": "^2.2.3",
"d3-timer": "^1.0.10",
"d3-transition": "^1.3.2",
"deepmerge": "^4.2.2",
"emotion": "^10.0.27",
"emotion-theming": "^10.0.27",
"express": "^4.17.1",
"formik": "^2.1.4",
"isomorphic-unfetch": "^3.0.0",
"lodash.uniq": "^4.5.0",
"mobx": "^5.15.4",
"mobx-react-lite": "^2.0.7",
"moment": "^2.27.0",
"mongodb": "^3.5.5",
"next": "^9.3.4",
"next-connect": "^0.6.1",
"next-session": "^3.0.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.9.0",
"react-spring": "^8.0.27",
"react-style-reset": "^1.3.1",
"react-transition-group": "^4.4.1",
"swr": "^0.2.0",
"theme-ui": "^0.3.1",
"typography-theme-fairy-gates": "^0.16.19",
"validator": "^13.0.0",
"yup": "^0.28.4"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@svgr/webpack": "^5.4.0",
"@testing-library/dom": "^7.18.1",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.3",
"@types/node": "^13.11.0",
"@types/react": "^16.9.32",
"@types/theme-ui": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-jest": "^26.1.0",
"babel-plugin-emotion": "^10.0.33",
"cypress": "4.10.0",
"cypress-jest-adapter": "^0.1.1",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"faker": "^4.1.0",
"jest": "^26.1.0",
"msw": "^0.19.5",
"now": "^19.2.0",
"typescript": "^3.8.3"
}
}