-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 869 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
33
{
"name": "orkut",
"version": "1.0.0",
"description": "Orkut server clone built with Node, PostgreSQL, Apollo, GraphQL",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "cross-env NODE_ENV=development nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Gledyson Ferreira dos Santos",
"license": "ISC",
"dependencies": {
"apollo-server": "^2.15.1",
"bcrypt": "^5.0.0",
"cloudinary": "^1.22.0",
"colors": "^1.4.0",
"graphql": "^15.2.0",
"graphql-scalars": "^1.2.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"sanitize-html": "^1.27.1",
"sequelize": "^6.3.0"
},
"devDependencies": {
"axios": "^0.21.1",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"nodemon": "^2.0.4",
"sequelize-cli": "^6.2.0"
}
}