-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.61 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
{
"name": "own-store-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:init": "next dev -p 3000",
"dev": "run-s sync:contract script:generate-manifest dev:init",
"start:local": "STORE_WEB_ENV=local npm run dev",
"start:localprod": "STORE_WEB_ENV=localproduction npm run dev",
"start": "next start",
"build:init": "next build",
"build": "run-s script:generate-manifest build:init",
"build:analyze": "BUNDLE_ANALYZE=true npm run build",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"lint:fix": "eslint '*/**/*.{js,ts,tsx}' --fix",
"sync:contract": "rm -rf ./contract && cp -fR ../own-store-api/src/app/contract .",
"script:generate-manifest": "node -r esm scripts/generateManifest.js"
},
"dependencies": {
"@sentry/react": "^6.11.0",
"@sentry/tracing": "^6.11.0",
"classnames": "^2.3.1",
"dayjs": "^1.10.6",
"debug": "^4.3.1",
"esm": "^3.2.25",
"fetch-retry": "^4.1.1",
"jwt-decode": "^3.1.2",
"lodash.throttle": "^4.1.1",
"next": "^11.0.1",
"next-page-transitions": "^1.0.0-beta.2",
"next-pwa": "^5.2.24",
"node-sass": "^5.0.0",
"nprogress": "^0.2.0",
"react": "^17.0.0",
"react-collapsible": "^2.8.3",
"react-dom": "^17.0.0",
"react-facebook-login": "^4.1.1",
"react-google-login": "^5.2.2",
"react-hot-toast": "^2.0.0",
"react-infinite-scroller": "^1.2.4",
"react-slick": "^0.28.1",
"slick-carousel": "^1.8.1",
"ua-parser-js": "^0.7.28",
"use-ssr": "^1.0.23"
},
"devDependencies": {
"@heroicons/react": "^1.0.1",
"@next/bundle-analyzer": "^10.0.7",
"@stripe/react-stripe-js": "^1.4.1",
"@stripe/stripe-js": "^1.16.0",
"@types/debug": "^4.1.6",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-facebook-login": "^4.1.4",
"@types/react-infinite-scroller": "^1.2.1",
"@types/react-slick": "^0.23.4",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"autoprefixer": "^10.3.1",
"dotenv": "^8.2.0",
"eslint": "^7.20.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"next-compose-plugins": "^2.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"prettier": "^2.2.1",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5",
"workbox-navigation-preload": "^6.3.0",
"workbox-precaching": "^6.2.2",
"workbox-routing": "^6.3.0",
"workbox-strategies": "^6.3.0"
}
}