-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.15 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "api.jamkelley.com",
"version": "0.1.0",
"description": "The API to support jamkelley.com",
"main": "index.js",
"scripts": {
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc \"src/**/*.ts\" --write",
"test": "jest",
"backup_resumes": "mv ./data/Resume/resume.json ./data/Resume/resume.json.bak && mv ./data/Resume/resume.pdf ./data/Resume/resume.pdf.bak"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier-format && npm run lint"
}
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": ".ts,.js",
"ignore": [],
"exec": "ts-node ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamKelley22/api.jamkelley.com.git"
},
"author": "Jameel Kelley",
"license": "ISC",
"bugs": {
"url": "https://github.com/JamKelley22/api.jamkelley.com/issues"
},
"homepage": "https://github.com/JamKelley22/api.jamkelley.com#readme",
"devDependencies": {
"@types/jest": "^26.0.8",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.2.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"dependencies": {
"@types/cors": "^2.8.6",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.6",
"@types/helmet": "0.0.47",
"@types/mysql": "^2.15.15",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"contentful-management": "^5.26.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs": "0.0.1-security",
"graphql": "^15.0.0",
"helmet": "^3.22.0",
"mysql": "^2.18.1",
"path": "^0.12.7",
"promise": "^8.1.0",
"util": "^0.12.3"
}
}