-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
120 lines (120 loc) · 3.61 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@react-finland/graphql-api",
"version": "0.0.0",
"private": true,
"description": "React Finland GraphQL API",
"main": "./build/server",
"scripts": {
"generate:all": "npm run generate:indices",
"generate:indices": "node utils/generate-indices.js content --verbose",
"generate:reason-conf": "node utils/generate-reason-conf.js",
"generate:typeof": "node utils/generate-typeof.js",
"build": "rimraf build && tsc",
"lint": "tslint --config tslint.json content/**/*.ts server/**/*.ts --fix",
"start": "tsc-watch --onSuccess \"node ./build/server\" --onFailure \"echo Beep! Compilation Failed\"",
"heroku:start": "node ./build/server/index.js",
"format": "prettier content/**/*.ts server/**/*.ts --write",
"heroku-postbuild": "echo Skip build on Heroku"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/compression": "1.0.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/file-saver": "^2.0.1",
"@types/fs-extra": "^8.0.0",
"@types/graphql": "^14.5.0",
"@types/helmet": "0.0.44",
"@types/history": "^4.7.3",
"@types/lodash": "^4.14.138",
"@types/md5": "^2.1.33",
"@types/morgan": "^1.7.37",
"@types/node": "^12.7.5",
"@types/query-string": "^6.3.0",
"@types/react": "^16.9.2",
"@types/react-copy-to-clipboard": "^4.2.6",
"@types/react-dom": "^16.9.0",
"@types/request": "^2.48.3",
"@types/request-promise-native": "^1.0.16",
"@types/window-or-global": "^1.0.0",
"camelcase": "^5.3.1",
"cheerio": "^1.0.0-rc.3",
"csstype": "^2.6.6",
"flatmap": "0.0.3",
"glob": "^7.1.7",
"mri": "^1.1.6",
"prettier": "^2.3.1",
"tsc-watch": "^4.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ReactFinland/graphql-api.git"
},
"bugs": {
"url": "https://github.com/ReactFinland/graphql-api/issues"
},
"dependencies": {
"@emotion/core": "^10.0.17",
"@emotion/styled": "^10.0.17",
"bent": "^6.1.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csv-parse": "^4.4.6",
"csv-stringify": "^5.3.3",
"date-range-array": "^2.1.0",
"dotenv": "^8.1.0",
"expeditious-engine-memory": "^0.2.1",
"express": "^4.18.2",
"express-expeditious": "^5.1.1",
"express-graphql": "^0.9.0",
"file-saver": "^2.0.2",
"fs-extra": "^8.1.0",
"fuse-box": "^3.7.1",
"googleapis": "^42.0.0",
"graphql": "^14.5.4",
"graphql-request": "^1.8.2",
"helmet": "^3.21.0",
"hex-to-rgba": "^2.0.1",
"history": "^4.9.0",
"ical-generator": "^1.7.2",
"just-kebab-case": "^1.1.0",
"lodash": "^4.17.21",
"markdown-to-jsx": "^6.11.4",
"md5": "^2.3.0",
"mkdirp": "^0.5.1",
"morgan": "^1.10.0",
"polished": "^3.4.1",
"query-string": "^6.8.3",
"react": "^16.9.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.9.0",
"react-easy-emoji": "^1.2.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"retina-dom-to-image": "^2.5.6",
"rimraf": "^3.0.0",
"smooth-scroll-into-view-if-needed": "^1.1.23",
"to-title-case": "^1.0.0",
"type-graphql": "^0.17.6",
"typescript": "^3.6.3",
"uglify-es": "^3.3.9",
"window-or-global": "^1.0.1",
"winston": "^3.3.3",
"zerofill": "^0.1.0"
},
"lint-staged": {
"*.--write": [
"prettier --write",
"git add"
]
},
"heroku-run-build-script": true
}