-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1017 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
34
35
36
37
38
{
"name": "widget-server",
"scripts": {
"start": "nodemon",
"prettier": "prettier --write ./src",
"eslint": "eslint ./src"
},
"dependencies": {
"apollo-server": "^2.18.1",
"apollo-server-express": "^2.18.1",
"class-validator": "^0.12.2",
"dotenv": "^8.2.0",
"express-jwt": "^5.3.1",
"graphql": "15.3.0",
"node-env-file": "^0.1.8",
"pg": "8.3.3",
"reflect-metadata": "^0.1.13",
"type-graphql": "1.0.0",
"typedi": "^0.8.0",
"typeorm": "^0.2.26"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/graphql": "^14.5.0",
"@types/jsonwebtoken": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.4",
"prettier": "2.1.2",
"ts-node": "^9.0.0",
"typescript": "4.0.3"
}
}