forked from ndrsllwngr/omm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 4.03 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
128
129
130
{
"private": true,
"license": "UNLICENSED",
"name": "group-task-01",
"description": "Group Task 01",
"version": "1.0.0",
"repository": "ndrsllwngr/omm",
"author": "Andreas Ellwanger, Andreas Griesbeck, Havy Ha, Maximilian Rauh",
"bugs": {
"url": "https://github.com/ndrsllwngr/omm/issues"
},
"engines": {
"node": ">=12.16.0"
},
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"build:analyze": "ANALYZE=true yarn build",
"export": "next export",
"preview-export": "cd out && python3 -m http.server",
"lint": "eslint ./components/** ./pages/** ./lib/** ./helpers/** --ext .js,.jsx",
"lint:fix": "eslint ./components/** ./pages/** ./lib/** ./helpers/** --ext .js,.jsx --fix",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook",
"license:full": "license-checker > ./license-check.txt",
"license:summary": "license-checker --summary",
"cy:open": "cypress open",
"cy:run": "cypress run --spec \"cypress/integration/examples/loginTest.spec.js,cypress/integration/examples/generateMemeTest.spec.js\"",
"vercel-build": "yum install libuuid-devel libmount-devel && cp /lib64/{libuuid,libmount,libblkid}.so.1 node_modules/canvas/build/Release/ && npm run build"
},
"browserslist": {
"production": [
">1%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@apollo/client": "3.3.11",
"@reach/checkbox": "0.13.2",
"@reach/dialog": "0.13.2",
"@reach/menu-button": "0.13.2",
"@reach/visually-hidden": "0.13.2",
"archiver": "5.2.0",
"bson-objectid": "1.3.1",
"canvas": "2.6.1",
"cookie-cutter": "0.2.0",
"cors": "2.8.5",
"d3": "6.5.0",
"date-fns": "2.17.0",
"deepmerge": "4.2.2",
"dom-to-image": "2.6.0",
"express-fileupload": "1.2.1",
"fabric": "4.3.1",
"file-saver": "2.0.5",
"firebase": "8.2.9",
"firebase-admin": "9.5.0",
"formidable-serverless": "1.1.1",
"framer-motion": "3.7.0",
"fs-monkey": "1.0.1",
"graphql": "15.5.0",
"image-conversion": "2.1.1",
"immer": "8.0.1",
"jimp": "0.16.1",
"lodash": "4.17.21",
"memfs": "3.2.0",
"mongodb": "3.6.4",
"next": "10.0.5",
"next-themes": "0.0.12",
"prop-types": "15.7.2",
"puppeteer": "8.0.0",
"react": "17.0.1",
"react-color": "2.19.3",
"react-dom": "17.0.1",
"react-hook-form": "6.15.4",
"react-icons": "4.2.0",
"react-infinite-scroller": "1.2.4",
"react-inlinesvg": "2.2.2",
"react-resizable": "1.11.0",
"react-share": "4.4.0",
"react-speech-kit": "3.0.1",
"react-speech-recognition": "3.7.0",
"react-webcam": "5.2.3",
"realm-web": "1.2.1",
"swr": "0.4.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"tmp": "0.2.1",
"unionfs": "4.4.0",
"unzipper": "0.10.11",
"use-image": "1.0.7",
"use-immer": "0.4.2",
"webcam-easy": "1.0.5"
},
"devDependencies": {
"@next/bundle-analyzer": "10.0.7",
"@storybook/addon-essentials": "6.1.20",
"@storybook/addon-links": "6.1.20",
"@storybook/react": "6.1.20",
"@svgr/webpack": "5.5.0",
"@testing-library/react": "11.2.5",
"@typescript-eslint/eslint-plugin": "4.15.2",
"@typescript-eslint/parser": "4.15.2",
"autoprefixer": "9.8.6",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"cypress": "6.5.0",
"dotenv-webpack": "6.0.2",
"eslint": "7.21.0",
"eslint-config-prettier": "8.1.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-graphql": "4.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"file-loader": "6.2.0",
"license-checker": "25.0.1",
"postcss": "7.0.35",
"postcss-nested": "4.2.3",
"prettier": "2.2.1",
"storybook-addon-next-router": "2.0.4"
}
}