-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.77 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.77 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
{
"name": "Github-Timeline-Backend",
"description": "A simple Node app built on Express, instantly up and running.",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/kleva-j/Github-Timeline-Backend.git",
"author": "kleva-j <kasmickleva@gmail.com>",
"license": "GPL-3.0 License",
"keywords": [
"Github",
"Timeline",
"API"
],
"engines": {
"node": "15.x"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/node": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"chai": "^4.3.0",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.0.9",
"mocha": "^8.3.0",
"nodemon": "^2.0.7",
"sinon": "^9.2.4"
},
"dependencies": {
"axios": "^0.21.1",
"compression": "^1.7.4",
"connect-mongo": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"express-session": "^1.17.1",
"graphql": "^15.5.0",
"helmet": "^4.4.1",
"morgan": "^1.10.0",
"winston": "^3.3.3",
"xss-clean": "^0.1.1"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"ignore": [
"node_modules",
"__test__"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test",
"pre-push": "yarn lint && yarn test"
}
},
"scripts": {
"start:dev": "nodemon -r esm index.js",
"start": "node -r esm index.js",
"dev": "nodemon --exec babel-node ./index.js",
"build:dev": "rm -rf dist && babel . -d dist/ --ignore node_modules",
"lint": "eslint . --ext .js",
"test": "cross-env NODE_ENV=test mocha __test__/index.spec.js --timeout=20000 --require esm --exit"
}
}