-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.69 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
{
"name": "express-react-apollo-starter",
"version": "1.0.0",
"description": "A starter for express and react using apollo",
"main": "build/index.js",
"scripts": {
"tsc": "tsc",
"start:dev": "ts-node-dev --respawn --transpileOnly ./src/index.ts",
"start:prod": "cd client && npm run build && cd .. && tsc && node ./build/index.js",
"lint": "eslint \"./src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evanstern/express-react-apollo-starter.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/evanstern/express-react-apollo-starter/issues"
},
"homepage": "https://github.com/evanstern/express-react-apollo-starter#readme",
"dependencies": {
"@types/express": "^4.17.1",
"@types/graphql-iso-date": "^3.3.3",
"@types/jest": "^24.0.18",
"@types/jsonwebtoken": "^8.3.4",
"@types/mongodb": "^3.3.3",
"@types/mongoose": "^5.5.18",
"@types/supertest": "^2.0.8",
"apollo-server-express": "^2.9.4",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"graphql": "^14.5.8",
"graphql-iso-date": "^3.6.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.6.0",
"mongoose": "^5.7.1",
"typescript": "^3.6.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"eslint": "^6.5.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node-dev": "^1.0.0-pre.43"
}
}