-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.61 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
{
"name": "ravendb-graphql-troy",
"version": "1.0.0",
"description": "RavenDB and GraphQL",
"author": {
"name": "Troy Zarger",
"email": "troy@troyzarger.com"
},
"license": "MIT",
"scripts": {
"server": "NODE_ENV=development nodemon --exec ts-node server/src/index.ts",
"dev": "npm run server",
"start": "NODE_ENV=production node dist/index.js",
"build": "npm install && concurrently --kill-others-on-fail \"npm run build:server\" \"npm run build:copy\"",
"build:server": "rimraf dist && tsc",
"build:copy": "copyfiles -f schema.graphql dist && echo 'Schema file copied.'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"apollo-server-express": "^1.3.6",
"axios": "^0.18.0",
"bcryptjs": "2.4.3",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"cookies": "^0.7.1",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"graphql-playground-middleware-express": "^1.7.1",
"graphql-tools": "^2.23.1",
"jsonwebtoken": "8.3.0",
"ravendb": "^4.0.1"
},
"devDependencies": {
"@types/bcryptjs": "2.4.1",
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/graphql": "^0.13.1",
"@types/jsonwebtoken": "^7.2.7",
"concurrently": "^3.6.0",
"copyfiles": "^2.0.0",
"graphql-cli": "2.16.3",
"nodemon": "1.17.5",
"npm-run-all": "4.1.3",
"rimraf": "2.6.2",
"ts-node": "6.2.0",
"typescript": "2.9.2"
},
"keywords": [
"node",
"express",
"create-react-app"
]
}