-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 858 Bytes
/
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
{
"name": "social-network",
"version": "1.0.0",
"description": "",
"main": "api/index.js",
"scripts": {
"server": "nodemon server/index.js",
"client": "npm run start --prefix ui",
"build": "npm run build --prefix ui",
"start": "node server/index.js",
"prod": "npm run build && npm start"
},
"author": "itay schechner",
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.1.5",
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.6",
"apollo-link-http": "^1.5.17",
"apollo-server": "^2.17.0",
"apollo-server-express": "^2.17.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql-tag": "^2.11.0",
"graphql-tools": "^6.2.1",
"jsonwebtoken": "^8.5.1",
"neo4j-driver": "^4.1.2",
"neo4j-graphql-js": "^2.16.3"
}
}