-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.01 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
{
"name": "pwask",
"version": "1.0.0",
"description": "The most advanced starter kit for a progressive web application",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/7s4r/pwask.git"
},
"author": "Gueorgui AGAPOV",
"license": "ISC",
"bugs": {
"url": "https://github.com/7s4r/pwask/issues"
},
"homepage": "https://github.com/7s4r/pwask#readme",
"directories": {
"test": "tests"
},
"keywords": [
"pwa",
"spa",
"progressive web app",
"reactjs",
"graphql",
"starter-kit",
"boilerplate",
"heroku",
"hasura",
"auth0",
"serverless"
],
"jest": {
"moduleDirectories": [
"src",
"node_modules"
],
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|svg)$": "<rootDir>/tests/__mocks__/fileMock.js"
},
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js",
"<rootDir>/tests/__mocks__/localStorageMock.js"
]
},
"scripts": {
"dev": "parcel index.html --https",
"lint": "eslint src",
"test:unit": "jest --coverage",
"test:e2e": "testcafe chrome tests/e2e",
"test:e2e:ci": "testcafe chrome:headless tests/e2e --skip-js-errors",
"build": "NODE_ENV=production parcel build index.html",
"start": "serve -s dist"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"babel-plugin-import": "^1.13.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.3.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"parcel-plugin-compress": "^1.1.0",
"parcel-plugin-static-files-copy": "^2.3.1",
"testcafe": "^1.8.4"
},
"dependencies": {
"@auth0/auth0-spa-js": "^1.6.5",
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.30",
"apollo-boost": "^0.4.7",
"autosuggest-highlight": "^3.1.1",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"cloudinary-react": "^1.4.0",
"clsx": "^1.1.0",
"core-js": "^3.6.5",
"graphql": "^15.0.0",
"i18next": "^19.4.1",
"i18next-browser-languagedetector": "^4.0.2",
"i18next-xhr-backend": "^3.2.2",
"lodash": "^4.17.15",
"notistack": "^0.9.9",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-apollo": "^3.1.5",
"react-dom": "^16.13.1",
"react-i18next": "^11.3.4",
"react-modal-hook": "^3.0.0",
"react-router-dom": "^5.1.2",
"react-share": "^4.1.0",
"react-swipeable-views": "^0.13.9",
"regenerator-runtime": "^0.13.5",
"register-service-worker": "^1.7.1",
"serve": "^11.3.0"
}
}