-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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
{
"name": "photobook-webapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "REACT_APP_ENV=dev next dev src",
"build": "REACT_APP_ENV=production next build src",
"build:staging": "REACT_APP_ENV=production next build src",
"start": "next start src"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --ignore-path=./.prettierignore",
"pre-push": "eslint ./src --max-warnings=0"
}
},
"dependencies": {
"@svgr/webpack": "^4.3.3",
"@zeit/next-css": "1.0.1",
"@zeit/next-sass": "1.0.1",
"array-move": "^2.2.0",
"axios": "^0.19.0",
"bignumber.js": "^9.0.0",
"deep-diff": "1.0.2",
"deep-object-diff": "^1.1.0",
"exif-js": "2.3.0",
"exif2css": "1.3.0",
"fabric": "3.5.1",
"fabric-with-gestures": "3.5.0",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.15",
"next": "9.3.2",
"next-images": "1.1.2",
"next-redux-wrapper": "3.0.0-alpha.3",
"piexifjs": "1.0.4",
"prop-types": "latest",
"react": "16.9.0",
"react-dnd": "^10.0.2",
"react-dnd-touch-backend": "^10.0.2",
"react-dom": "16.9.0",
"react-lazyload": "^2.6.5",
"react-media": "^1.10.0",
"react-redux": "7.1.1",
"react-sortable-hoc": "^1.10.1",
"react-toastify": "^5.4.1",
"react-virtualized": "^9.21.1",
"redux": "4.0.4",
"redux-actions": "2.6.5",
"redux-saga": "1.1.1",
"redux-undo": "1.0.0-beta5",
"reselect": "3.0.1",
"styled-components": "4.4.0",
"unstated-x": "0.1.1",
"uuid": "3.3.3"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"babel-plugin-styled-components": "1.8.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-react-app": "9.0.0",
"dotenv": "8.1.0",
"eslint": "6.5.1",
"eslint-config-react-app": "5.0.2",
"eslint-loader": "3.0.2",
"eslint-plugin-flowtype": "4.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.1.2",
"husky": "2.4.1",
"prettier": "1.18.2",
"pretty-quick": "2.0.0",
"terser-webpack-plugin": "2.3.0",
"webpack": "4.40.2",
"webpack-cli": "3.3.9"
}
}