forked from okfde/offenegesetze.de
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.92 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.92 KB
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
{
"name": "offenegesetze",
"version": "0.1.0",
"description": "The Federal Law Gazettes are the central documents of German democracy. To pass a law, it has to be published in the Law Gazette. At OffeneGesetze.de they are now freely accessible for the first time. On the portal we provide the documents free of charge and for free re-use.",
"main": "misc/server.js",
"scripts": {
"start": "rm -rf .next && node misc/server.js",
"build": "next build",
"production": "NODE_ENV=production node misc/server.js",
"test": "jest",
"pretty": "prettier --write '**/*.js' && prettier --write '**/*.scss'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okfde/offenegesetze.de.git"
},
"author": "Johannes Filter, Stefan Wehrmeyer, Open Knowledge Foundation Deutschland e. V.",
"license": "MIT",
"bugs": {
"url": "https://github.com/okfde/offenegesetze.de/issues"
},
"homepage": "https://offenegesetze.de",
"engines": {
"node": "^14 || ^16"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.10.2",
"bulma": "^0.7.4",
"dayjs": "^1.8.16",
"express": "^4.17.3",
"isomorphic-unfetch": "^2.1.1",
"lru-cache": "^4.1.5",
"next": "^12.1.0",
"node-sass": "^8.0.0",
"react": "^17.0.2",
"react-animate-on-change": "^2.2.0",
"react-autocomplete": "^1.8.1",
"react-dom": "^17.0.2",
"react-infinite-scroller": "^1.2.4",
"react-input-range": "^1.3.0",
"react-lazyload": "^2.6.2",
"react-pdf": "^4.1.0",
"react-scroll-up": "^1.3.3",
"react-spinners": "^0.11.0",
"react-sticky": "^6.0.3"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"jest": "^25.0.0",
"postcss": "^8.3.6",
"prettier": "^2.1.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
}
}