This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.38 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": "democracy-desktop",
"version": "0.1.0",
"description": "DEMOCRACY Desktop & Web Client",
"main": "index.js",
"repository": "https://github.com/demokratie-live/democracy-desktop",
"author": "DEMOCRACY Deutschland e.V. <contact@democracy-deutschland.de>",
"contributors": [
"Manuel Ruck <m.ruck@democracy-deutschland.de>",
"Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>"
],
"license": "Apache-2.0",
"private": false,
"scripts": {
"clear": "rimraf .next static/fonts/democracy/*.*",
"dev": "npm run build:fonts && nodemon server/index.js",
"build": "next build",
"build:fonts": "icon-font-generator assets/fontSvgs/*.svg -o static/fonts/democracy/ --normalize",
"prebuild": "npm run clear && npm run build:fonts",
"start": "NODE_ENV=production node server/index.js",
"lint": "eslint ."
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "1.0.1",
"@zeit/next-source-maps": "^0.0.3",
"antd": "^3.9.3",
"apollo-boost": "^0.1.12",
"browser-detect": "^0.2.28",
"core-js": "^2.5.7",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"graphql": "^14.0.2",
"isomorphic-unfetch": "^3.0.0",
"less": "^3.8.1",
"next": "^7.0.0",
"next-compose-plugins": "^2.1.1",
"next-optimized-images": "^1.4.1",
"next-url-prettifier": "^1.3.0",
"path-to-regexp": "^2.4.0",
"polished": "^2.1.1",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-apollo": "^2.2.1",
"react-dom": "^16.5.2",
"react-infinite-scroller": "^1.2.1",
"react-style-proptype": "^3.2.2",
"speakingurl": "^14.0.1",
"styled-components": "^3.4.9",
"victory": "^30.4.1",
"weakmap-polyfill": "^2.0.0",
"webpack-bundle-analyzer": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.0",
"babel-plugin-import": "^1.9.1",
"babel-plugin-inline-react-svg": "^0.5.4",
"babel-plugin-styled-components": "^1.7.1",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.11.1",
"icon-font-generator": "^2.1.8",
"nodemon": "^1.18.4",
"prettier": "^1.14.3",
"rimraf": "^2.6.2"
}
}