forked from Scrivito/scrivito_example_app_js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.92 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
{
"name": "example_app_js",
"description": "Scrivito Example App JS",
"license": "MIT",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"private": true,
"repository": {
"private": true
},
"dependencies": {
"@apollo/client": "^3.6.2",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@loadable/component": "^5.15.2",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"autotrack": "^2.4.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"content-security-policy-builder": "^2.1.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"css-loader": "^3.5.3",
"dateformat": "^3.0.3",
"dotenv": "^8.2.0",
"es-check": "^5.1.0",
"escape-html": "^1.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"filesize": "^6.1.0",
"fs-extra": "^9.0.0",
"fuse.js": "^3.6.1",
"generator-scrivito": "file:generator-scrivito",
"graphql": "^16.4.0",
"history": "^4.10.1",
"html-webpack-plugin": "^4.3.0",
"is-empty": "^1.2.0",
"jquery": "^3.5.1",
"js-md4": "^0.3.2",
"jsontoxml": "^1.0.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^0.9.0",
"moment-from-now": "0.0.4",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"puppeteer": "^3.0.2",
"react": "^18.1.0",
"react-cookie-consent": "^3.0.0",
"react-dom": "^18.1.0",
"react-draggable": "^4.3.1",
"react-helmet-async": "^1.0.6",
"react-highlight-words": "^0.16.0",
"react-images": "^0.5.19",
"react-reveal": "^1.2.2",
"react-search-autocomplete": "^6.1.3",
"react-slick": "^0.25.2",
"reactstrap": "^8.4.1",
"sass-loader": "^8.0.2",
"scrivito": "^1.29.0",
"scroll-to-fragment": "^1.0.6",
"slick-carousel": "^1.6.0",
"terser-webpack-plugin": "^3.0.0",
"typescript": "^3.8.3",
"urlify": "^*",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-manifest-plugin": "^2.2.0",
"webpackbar": "^4.0.0",
"zip-webpack-plugin": "^3.0.0"
},
"scripts": {
"build": "webpack -p",
"prerender": "SCRIVITO_PRERENDER=true npm run build && node prerender/storePrerenderedContent.js",
"start": "webpack-dev-server --open",
"eslint": "eslint --max-warnings 0 src/ prerender/",
"es-check": "npm run build && es-check es5 './build/**/*.js'"
}
}