-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "@tituskirch/pageinfotype",
"version": "2.0.2",
"description": "A PageInfoType according to relay for apollo server.",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:production",
"build:dev": "webpack --config webpack.development.js",
"build:development": "npm run build:dev",
"build:production": "webpack --config webpack.production.js",
"start": "node -r dotenv/config dist/server",
"start:watch": "nodemon -r dotenv/config dist/server",
"eslint": "npx eslint 'src/**.ts'"
},
"keywords": [
"apolloserver",
"page-infotype",
"relay",
"graphql"
],
"author": "Titus Kirch",
"license": "MIT",
"dependencies": {
"apollo-server": "^2.22.2"
},
"devDependencies": {
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.23.0",
"nodemon": "^2.0.7",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-merge": "^5.7.3",
"webpack-node-externals": "^2.5.2"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tituskirch/pageinfotype.git"
},
"bugs": {
"url": "https://github.com/tituskirch/pageinfotype/issues"
},
"homepage": "https://github.com/tituskirch/pageinfotype#readme"
}