-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "tweetz-api",
"version": "1.0.0",
"description": "API for Tweetz APP",
"main": "index.js",
"author": "Abolarin Olanrewaju <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node index.js",
"dev": "nodemon --exec \"yarn lint && yarn start\"",
"lint": "eslint --fix . && echo '✔ done linting.'",
"test": "jest --colors true"
},
"dependencies": {
"casual": "^1.6.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"globby": "^10.0.1",
"graphql": "^14.5.8",
"graphql-tools": "^4.0.5",
"lodash": "^4.17.15",
"lowdb": "^1.0.0",
"sequelize": "^5.21.1",
"socket.io": "^2.3.0",
"sqlite3": "^4.1.0",
"supertest": "^4.0.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"prettier": "^1.18.2"
}
}