forked from technologiestiftung/berlin-open-source-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.95 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
{
"name": "berlin-open-source-portal",
"version": "1.0.0",
"description": "A prototype to showcase Open Source Software that is built, maintained and/or funded by Berlin state governmental agencies",
"main": "index.js",
"scripts": {
"clean": "rm -rf _site",
"fetch:repos": "ts-node utils/fetchGithubData.ts",
"dev:css": "postcss src/assets/css/style.css -o src/assets/css/style.compiled.css --watch --verbose",
"dev:eleventy": "eleventy --serve --quiet",
"build:css": "NODE_ENV=${NODE_ENV:=production} postcss src/assets/css/style.css -o src/assets/css/style.compiled.css",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"dev": "npm-run-all clean --parallel dev:* --print-label",
"build": "run-s clean build:css build:eleventy --print-label",
"start": "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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/technologiestiftung/berlin-open-source-portal.git"
},
"author": "Dennis Ostendorf",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/technologiestiftung/berlin-open-source-portal/issues"
},
"homepage": "https://github.com/technologiestiftung/berlin-open-source-portal#readme",
"devDependencies": {
"@11ty/eleventy": "1.0.2",
"@github-docs/frontmatter": "1.3.1",
"@tailwindcss/typography": "0.5.7",
"@testing-library/cypress": "8.0.3",
"@types/node": "16.11.57",
"autoprefixer": "10.4.8",
"cssnano": "5.1.13",
"cypress": "9.7.0",
"dotenv": "16.0.2",
"fs": "0.0.2",
"node-fetch": "2.6.7",
"npm-run-all": "4.1.5",
"postcss": "8.4.16",
"postcss-cli": "10.0.0",
"start-server-and-test": "1.14.0",
"tailwindcss": "3.1.8",
"ts-node": "10.9.1",
"typescript": "4.8.2"
}
}