-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.4 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
{
"name": "einblick-stuttgart",
"version": "0.1.0",
"description": "Diese Software soll mehr Einblick in die politische Arbeit der Stadt Stuttgart ermöglichen",
"main": "src/index.ts",
"directories": {
"doc": "doc"
},
"scripts": {
"build": "npm run client:build && npm run server:build",
"doc:generate:uml": "puml generate doc/plantuml/komponenten.puml -o doc/plantuml/komponenten.png",
"client:build": "parcel build src/Client/index.html --out-dir ./public",
"client:build:debug": "parcel build src/Client/index.html --out-dir ./public --no-minify",
"client:build:watch": "parcel watch src/Client/index.html --out-dir ./public ",
"lint": "tslint --project tsconfig.json",
"start": "npm run client:build && npm run server:start",
"server:start": "npm run server:build:live",
"server:build": "tsc -p .",
"server:build:live": "nodemon --watch src/Server --watch src/shared --exec node_modules/.bin/ts-node src/Server/index.ts",
"server:check": "tsc --noEmit",
"server:lint:graphql": "graphql-schema-linter ./src/Server/schema.graphql",
"server:verify": "npm run server:check && npm run server:lint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Stuttgart",
"Bürgerbeteiligung",
"Open Governence",
"Open Data"
],
"dependencies": {
"apollo-cache-inmemory": "1.6.3",
"apollo-client": "2.6.4",
"apollo-link-http": "1.5.16",
"axios": "0.19.0",
"bottlejs": "1.7.2",
"bulma": "0.8.0",
"bulma-switch": "2.0.0",
"bulma-tagsinput": "2.0.0",
"bulma-toast": "1.5.3",
"cheerio": "1.0.0-rc.3",
"date-and-time": "0.10.0",
"graphql-schema-linter": "0.2.1",
"graphql-tag": "2.10.1",
"graphql-yoga": "1.18.3",
"iconv-lite": "0.5.0",
"jquery": "3.5.0",
"moment": "2.24.0",
"mustache": "3.1.0",
"nodemon": "2.0.3",
"pdfobject": "2.1.1",
"query-string": "6.8.3",
"ts-node": "8.4.1",
"typescript": "3.4.5",
"uuid": "3.3.3"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/cheerio": "0.22.7",
"@types/moment": "2.13.0",
"@types/node": "12.11.6",
"node-plantuml": "0.9.0",
"parcel-bundler": "1.12.4",
"sass": "1.23.1",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0"
},
"author": "Achim Kramer <achim@zibra.de>",
"license": "AGPL-3.0-only",
"private": true
}