This repository has been archived by the owner on Jul 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.78 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": "clerk",
"version": "1.0.0",
"description": "The Kitsu service for filing uploads",
"main": "index.js",
"scripts": {
"start": "npm run serve",
"build": "tsc",
"build-watch": "tsc -w",
"preparse": "node compile-gql.js",
"preparse-watch": "nodemon -e gql compile-gql.js",
"serve": "node dist/server.js",
"serve-watch": "nodemon dist/server.js",
"serve-watch-debug": "nodemon --inspect dist/server.js",
"test": "jest --forceExit --coverage --verbose",
"test-watch": "npm run test -- --watchAll",
"lint": "tslint -c tslint.json -p tsconfig.json",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,GraphQL,Node\" -c \"cyan.bold,magenta.bold,green.bold\" \"npm run build-watch\" \"npm run preparse-watch\" \"npm run serve-watch\"",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,GraphQL,Node\" -c \"cyan.bold,magenta.bold,green.bold\" \"npm run build-watch\" \"npm run preparse-watch\" \"npm run serve-watch-debug\""
},
"author": "Emma Lejeck <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"apollo-server": "^2.9.13",
"aws-sdk": "^2.585.0",
"glob": "^7.1.6",
"graphql": "^14.0.2",
"knex": "^0.19.5",
"nanoid": "^2.1.4",
"pg": "^7.14.0"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/glob": "^7.1.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^24.0.13",
"@types/knex": "^0.16.1",
"@types/nanoid": "^2.1.0",
"@types/node": "^12.11.1",
"@types/pg": "^7.4.14",
"@types/supertest": "^2.0.7",
"chai": "^4.2.0",
"concurrently": "^5.0.1",
"jest": "^23.6.0",
"nodemon": "^1.19.1",
"supertest": "^3.3.0",
"ts-jest": "^23.10.5",
"ts-node": "^8.5.4",
"tslint": "^5.20.0",
"typescript": "^3.7.3"
}
}