-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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": "photocontest",
"scripts": {
"dev": "next",
"build": "next build",
"now-build": "next build",
"start": "next start",
"tsc": "tsc",
"eslint": "eslint --fix ./components/**/* ./pages/**/* ./lib/**/* ./theme/**/*",
"lint": "yarn tsc && yarn eslint",
"format": "prettier --write \"**/*.ts\" \"**/*.tsx\" \"**/*.js\""
},
"version": "1.0.0",
"main": "pages/index.tsx",
"author": "Matěj Kříž",
"license": "UNLICENSED",
"private": false,
"engines": {
"node": ">=10.x"
},
"dependencies": {
"@types/react-image-gallery": "^0.9.2",
"@zeit/webpack-asset-relocator-loader": "0.5.8",
"dotenv": "^8.0.0",
"firebase": "^7.5.2",
"firebaseui": "^4.3.0",
"formik": "^1.5.8",
"next": "^9.1.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.5",
"react-image-gallery": "^1.0.3",
"semantic-ui-react": "^0.87.3",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.4.4",
"@types/node": "^12.6.9",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"@types/styled-jsx": "^2.2.8",
"@types/yup": "^0.26.23",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-plugin-inline-dotenv": "^1.3.3",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"babel-plugin-transform-runtime": "^6.23.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.3.0",
"prettier": "^1.17.1",
"typescript": "^3.4.5"
},
"resolutions": {
"**/lodash": "^4.17.13"
}
}