-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.48 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
{
"name": "graphql-api-presentation",
"version": "1.0.0",
"main": "index.js",
"author": "Rafal Dziegielewski <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"build:watch": "rimraf dist && tsc -w",
"start:dev": "nodemon -w dist -e js,json,graphql dist/server/index.js",
"start": "cross-env NODE_ENV=production node dist/server/index.js",
"fakes": "node dist/scripts/fakes.js",
"lint": "eslint --ext .ts,.js ./src"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/faker": "^5.5.5",
"@types/node": "^15.6.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"cross-env": "^7.0.3",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
},
"dependencies": {
"apollo-server-express": "^2.24.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"dataloader": "^2.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"faker": "^5.5.3",
"graphql": "^15.5.0",
"lodash": "^4.17.21",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.32"
}
}