-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "familie-mock-server",
"version": "1.0.0",
"description": "Mock server for familie",
"main": "app.ts",
"repository": "https://github.com/navikt/familie-mock-server.git",
"author": "NAV",
"license": "MIT",
"private": true,
"scripts": {
"start": "node ./dist/app.js",
"start:dev": "tsc-watch --onSuccess \"node ./dist/app.js\"",
"build": "tsc",
"codegen": "graphql-codegen --config codegen.yml"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@types/express": "^4.17.3",
"@types/express-graphql": "^0.9.0",
"@types/shortid": "^0.0.29",
"dayjs": "^1.11.10",
"express": "^4.19.2",
"express-graphql": "^0.9.0",
"graphql": "^14.6.0",
"graphql-tools": "^4.0.7",
"shortid": "^2.2.15",
"type-graphql": "^1.1.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@graphql-codegen/cli": "1.19.4",
"@graphql-codegen/introspection": "1.18.1",
"@graphql-codegen/typescript": "1.19.0",
"@graphql-codegen/typescript-resolvers": "^1.18.0",
"graphql-schema-typescript": "^1.5.2",
"husky": "^4.2.3",
"nodemon": "^2.0.2",
"prettier": "^2.0.1",
"pretty-quick": "^2.0.1",
"tsc-watch": "^4.2.3",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}