-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 3.18 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
{
"name": "kleiderordnung-berlin",
"version": "4.6.1",
"description": "portfolio website for sustainable stylist Tina Steinke",
"scripts": {
"install": "node install-local-environment.js",
"start": "docker compose restart",
"postinstall": "docker image prune -f",
"stop": "docker compose stop",
"destroy": "docker compose down -v",
"prebuild": "rimraf build dist && make-dir dist",
"build": "run-s build:core build:postcss build:js",
"build:core": "copyfiles -u 1 -e src/* src/**/* src/fonts/* src/img/* src/img/**/* src/*.css src/*.php src/404.php src/**/**/*.php src/*.png src/*.json src/style.css src/screenshot.png src/lottie/images/* themes/kleiderordnung",
"build:postcss": "postcss src/style.css --config . --no-map --verbose --o themes/kleiderordnung/style.css",
"build:js": "esbuild src/js/scripts.js --bundle --sourcemap --target=es5 --outfile=themes/kleiderordnung/js/scripts.js",
"build:zip": "zip-build themes/kleiderordnung dist --name kleiderordnung --template kleiderordnung.zip",
"build:translations": "msgfmt -o src/languages/en_US.mo src/languages/en_US.po && msgfmt -o src/languages/de_DE.mo src/languages/de_DE.po",
"watch": "watch \"npm run build:postscss\" src/css",
"test": "npm run stylelint && npm run eslint && npm run jasmine && npm run codeceptjs",
"stylelint": "stylelint src/style.css src/css/*.css",
"eslint": "eslint --ext .js src/js src/js/inc spec spec/helpers codecept",
"jasmine": "jasmine",
"codeceptjs": "cd codecept && npm run codeceptjs:default && npm run codeceptjs:mobile && cd ..",
"codeceptjs-comment": "run in subdirectory as it does not support ESM type module import/export without babel yet",
"codeceptjs:default": "codeceptjs run --steps",
"codeceptjs:mobile": "MOBILE=true codeceptjs run --steps",
"codeceptjs:headless": "HEADLESS=true codeceptjs run --steps"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/openmindculture/kleiderordnung-berlin.git"
},
"author": "Ingo Steinke",
"license": "proprietary",
"bugs": {
"url": "https://github.com/openmindculture/kleiderordnung-berlin/issues"
},
"homepage": "https://www.kleiderordnung-berlin.de/",
"dependencies": {
"@lottiefiles/lottie-player": "^2.0.2"
},
"devDependencies": {
"@codeceptjs/configure": "^0.10.0",
"@testomatio/reporter": "^1.0.0",
"codeceptjs": "^3.5.0",
"codeceptjs-resemblehelper": "^1.9.6",
"copyfiles": "^2.4.1",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"eslint-plugin-es5": "^1.5.0",
"html-minifier-cli": "^0.1.0",
"import-export": "^1.0.1",
"jasmine": "^5.1.0",
"make-dir-cli": "^3.0.0",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"playwright": "^1.25.2",
"postcss": "^8.4.23",
"postcss-cli": "^10.1.0",
"postcss-custom-properties": "^13.1.4",
"postcss-import": "^15.1.0",
"postcss-minify": "^1.1.0",
"postcss-mixins": "^9.0.4",
"postcss-nesting": "^12.0.0",
"puppeteer": "^21.1.0",
"rimraf": "^5.0.0",
"stylelint": "^15.3.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-use-nesting": "^4.1.0",
"watch": "^1.0.2",
"zip-build": "^1.8.0"
}
}