-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.67 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
{
"name": "@storystore/pwa",
"version": "1.1.8",
"magentoDependency": ">= 2.4.0",
"author": "Carlos A. Cabrera @fnhipster",
"repository": "https://github.com/pmet-public/storystore-pwa.git",
"main": "server.js",
"engines": {
"node": "10.x"
},
"scripts": {
"dev": "npm run graphql:schema && next dev -p ${PORT:=3000}",
"start": "next start -p ${PORT:=3000}",
"build": "npm run graphql:schema && next build",
"graphql:schema": "node lib/apollo/getGraphQLSchema.js",
"lint": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"prettier": "prettier --check --write ."
},
"browser": {
"child_process": false,
"net": false,
"tls": false
},
"dependencies": {
"@apollo/client": "^3.0.2",
"@storystore/ui": "1.3.0-beta26",
"@types/semver": "^7.2.0",
"@types/sharp": "^0.25.1",
"apollo-link-queue": "^2.2.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"google-map-react": "^2.1.4",
"graphql": "^15.3.0",
"html-react-parser": "^0.13.0",
"jarallax": "^1.12.1",
"jsdom": "^16.4.0",
"next": "10.0.0",
"next-offline": "^5.0.2",
"nextjs-progressbar": "^0.0.5",
"node-fetch": "^2.6.0",
"preact": "^10.3.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-ga": "^3.1.2",
"react-lazy-images": "^1.1.0",
"react-slick": "^0.26.0",
"react-toastify": "^6.0.8",
"remixicon": "^2.3.0",
"semver": "^7.3.2",
"sharp": "^0.25.4",
"styled-components": "5.1.1",
"workbox-cacheable-response": "^5.0.0",
"workbox-core": "^5.0.0",
"workbox-expiration": "^5.0.0",
"workbox-precaching": "^5.0.0",
"workbox-routing": "^5.0.0",
"workbox-strategies": "^5.0.0",
"workbox-window": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.7.0",
"@types/google-map-react": "^2.1.0",
"@types/jsdom": "^16.2.3",
"@types/node": "^14.6.0",
"@types/node-fetch": "^2.5.0",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@types/react-slick": "^0.23.4",
"@types/styled-components": "5.1.2",
"@types/workbox-window": "^4.3.3",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-plugin-inline-react-svg": "^1.1.1",
"babel-plugin-styled-components": "1.11.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.1.0",
"html-webpack-plugin": "^4.0.2",
"prettier": "^2.0.2",
"react-is": "^16.13.1",
"react-svg-loader": "^3.0.3",
"rimraf": "^3.0.0",
"typescript": "4.0.2",
"webpack": "^4.41.2"
}
}