-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.87 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
{
"name": "posti-graphql",
"version": "3.5.2",
"description": "Posti Basic Address auto-updater GraphQL server",
"repository": "https://github.com/kirbo/posti-graphql",
"author": "Kimmo Saari <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn build:schema && cross-env NODE_ENV=build npx babel src --out-dir dist",
"build:schema": "babel-node src/build.js",
"start": "babel-node src/server.js",
"start:dev": "nodemon --ignore src/graphql/Types/ -x npm-run-all build:schema start:server",
"start:server": "babel-node src/server.js",
"force": "cross-env force=true babel-node src/posti.js",
"lint": "eslint .",
"test": "yarn test:debug --silent --colors",
"test:debug": "cross-env NODE_ENV=test jest --verbose --detectOpenHandles --forceExit",
"prepush": "yarn lint && yarn test"
},
"engines": {
"node": ">=6.0.0",
"yarn": ">=1.3.2"
},
"bin": {
"posti-server": "./dist/server.js"
},
"files": [
"dist",
"package.json"
],
"keywords": [
"posti",
"finnish post",
"basic addresses",
"graphql"
],
"dependencies": {
"apollo-engine": "1.1.2",
"apollo-server-express": "2.23.0",
"compression": "1.7.4",
"core-js": "3.11.0",
"cors": "2.8.5",
"eslint-config-airbnb-base": "14.2.1",
"express": "4.17.1",
"express-rate-limit": "5.2.6",
"express-slow-down": "1.4.0",
"fs-extra": "9.1.0",
"graphiql": "1.4.1",
"graphql": "15.5.0",
"graphql-fields": "2.0.3",
"graphql-playground-middleware-express": "1.7.22",
"graphql-tools": "7.0.4",
"moment": "2.29.1",
"regenerator-runtime": "0.13.7"
},
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.13.16",
"@babel/node": "7.13.13",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-object-rest-spread": "7.13.8",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.13.15",
"babel-eslint": "10.1.0",
"babel-plugin-minify-constant-folding": "0.5.0",
"babel-plugin-minify-dead-code-elimination": "0.5.1",
"babel-plugin-minify-guarded-expressions": "0.4.4",
"babel-plugin-minify-mangle-names": "0.5.0",
"babel-plugin-minify-replace": "0.5.0",
"babel-plugin-minify-simplify": "0.5.1",
"babel-plugin-shebang": "1.0.0",
"babel-preset-minify": "0.5.1",
"cross-env": "7.0.3",
"eslint": "7.24.0",
"eslint-plugin-compat": "3.9.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "32.3.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-require-jsdoc": "1.0.4",
"husky": "6.0.0",
"invariant": "2.2.4",
"jest": "26.6.3",
"jest-plugin-console-matchers": "2.9.0",
"levenary": "1.1.1",
"nodemon": "2.0.7",
"npm-run-all": "4.1.5",
"posti": "3.5.1"
},
"peerDependencies": {
"posti": ">=3.5.1"
}
}