-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.83 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
{
"name": "@rm-frontend-website/microsite",
"version": "1.0.0",
"description": "website for the ruhmesmeile frontend",
"main": "index.js",
"scripts": {
"build-all": "rm -rf dist public source/static && rm-frontend build && mkdir -p source/static && cp -r dist/* source/static/ && npx @11ty/eleventy --input=source --output=public --formats=md,html,hbs",
"build-sapper": "cd static && rollup -c && cd .. && rm -rf public && NODE_ENV=development rm-frontend build && cp -r dist/* static/ && cp -r source/images/* static/images/ && NODE_ENV=production npm run export && cp -r __sapper__/export public && rm -rf static/css && rm -rf static/fonts && rm -rf static/images && rm -rf static/js && rm -rf static/patternlab && rm -rf static/server && rm static/webpack-report.html",
"pre-sapper": "NODE_ENV=development npm run frontend-build && cp -r dist/* static && cp -r source/images static/ && cd static && rollup -c && cd ..",
"frontend-start": "rm-frontend watch",
"frontend-build": "rm-frontend build",
"eleventy-start": "npx @11ty/eleventy --input=source --output=public --formats=md,html,hbs --serve",
"eleventy-build": "npx @11ty/eleventy --input=source --output=public --formats=md,html,hbs",
"rollup": "cd static && rollup -c && cd ..",
"dev": "sapper dev",
"build": "sapper build",
"export": "sapper export",
"start": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:7999/front/rm-frontend-website.git"
},
"author": "Jonas Ulrich | ruhmesmeile GmbH",
"license": "ISC",
"private": true,
"dependencies": {
"@rm-frontend-website/instance": "^3.1.2",
"compression": "^1.7.1",
"js-yaml": "^3.13.1",
"polka": "next",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sirv": "^0.4.0"
},
"devDependencies": {
"@11ty/eleventy": "^0.9.0",
"@mightyplow/eleventy-plugin-cache-buster": "^1.1.3",
"@rollup/plugin-json": "^4.0.1",
"@rollup/plugin-node-resolve": "^6.0.0",
"@rollup/plugin-replace": "^2.2.1",
"babel-plugin-react-html-attrs": "^2.1.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"clean-css": "^4.2.1",
"front-matter": "^3.0.2",
"glob-fs": "^0.1.7",
"html-react-parser": "^0.10.0",
"markdown-it": "^10.0.0",
"mz": "^2.7.0",
"netlify-cms-app": "^2.11.1",
"netlify-cms-widget-simple-uuid": "0.0.2",
"npm-run-all": "^4.1.5",
"rollup": "^1.27.13",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^5.1.3",
"sapper": "^0.27.0",
"svelte": "^3.0.0",
"svelte-loader": "^2.9.0",
"webpack": "^4.7.0"
}
}