-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.45 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
{
"name": "service-agentinnen",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf _site",
"dev:eleventy": "npx @11ty/eleventy --serve --quiet",
"dev:css": "npx tailwindcss -i ./src/assets/css/tailwind.css -c tailwind.config.js -o ./_site/style.css --watch",
"dev": "npm-run-all clean --parallel dev:* --print-label",
"build:eleventy": "NODE_ENV=production npx @11ty/eleventy",
"build:css": "npx tailwindcss -i ./src/assets/css/tailwind.css -c tailwind.config.js -o ./_site/style.css -m",
"build:js": "uglifyjs-folder ./src/assets/js --config-file 'uglify.config.json' -x '.js' --output ./_site/assets/js -e",
"build": "run-s clean build:css build:eleventy build:js --print-label",
"start": "npx @11ty/eleventy --serve --quiet",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"test": "start-server-and-test dev http://localhost:8080 cypress:run",
"test:watch": "start-server-and-test dev http://localhost:8080 cypress:open",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy"
},
"keywords": [],
"author": "Dennis Ostendorf",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "1.0.2",
"@tailwindcss/typography": "0.5.10",
"@testing-library/cypress": "8.0.7",
"cypress": "9.7.0",
"html-minifier": "4.0.0",
"npm-run-all": "4.1.5",
"start-server-and-test": "1.15.4",
"tailwindcss": "3.3.5",
"uglifyjs-folder": "3.3.0"
}
}