-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
50
51
52
53
54
55
56
57
58
59
{
"name": "portfolio-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --respawn src/index.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/graphql": "^14.2.2",
"@types/node": "^12.6.2",
"@types/nodemailer": "^6.2.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"apollo-server-express": "^2.6.9",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"graphql": "^14.4.2",
"mysql": "^2.17.1",
"nodemailer": "^6.2.1",
"reflect-metadata": "^0.1.13",
"ts-node-dev": "^1.0.0-pre.40",
"type-graphql": "^0.17.4",
"typedi": "^0.8.0",
"typeorm": "^0.2.18",
"typeorm-typedi-extensions": "^0.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"git add"
]
}
}