-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
87 lines (87 loc) · 2.74 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
{
"name": "example_app_js",
"description": "Scrivito Example App JS",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"private": true,
"repository": {
"private": true
},
"dependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@loadable/component": "^5.15.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@successtar/react-reveal": "^1.2.10",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"content-security-policy-builder": "^2.1.1",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.25.3",
"css-loader": "^6.7.1",
"dateformat": "^5.0.3",
"dotenv": "^16.0.2",
"es-check": "^7.0.1",
"escape-html": "^1.0.3",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"filesize": "^9.0.11",
"fs-extra": "^10.1.0",
"fuse.js": "^6.6.2",
"generator-scrivito": "file:generator-scrivito",
"hash-wasm": "^4.9.0",
"history": "^5.3.0",
"html-webpack-plugin": "^5.5.0",
"is-empty": "^1.2.0",
"jquery": "^3.6.1",
"jsontoxml": "^1.0.1",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"moment-from-now": "0.0.4",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-helmet-async": "^1.3.0",
"react-highlight-words": "^0.18.0",
"react-refresh": "^0.14.0",
"react-slick": "^0.29.0",
"sass": "^1.55.0",
"sass-loader": "^13.0.2",
"scrivito": "^1.45.0",
"scroll-to-fragment": "^1.0.12",
"slick-carousel": "^1.6.0",
"speakingurl": "^14.0.1",
"typescript": "^4.8.4",
"use-resize-observer": "^9.0.2",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-manifest-plugin": "^5.0.0",
"webpackbar": "^5.0.0-3",
"zip-webpack-plugin": "^4.0.1"
},
"scripts": {
"build": "webpack --config webpack.config.production.js",
"prerender": "SCRIVITO_PRERENDER=true npm run build && node buildNode/prerender_content.js",
"start": "webpack serve",
"eslint": "eslint --max-warnings 0 *.js src/",
"es-check": "npm run build && es-check es2018 './build/**/*.js'"
}
}