-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.45 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "todo-api",
"version": "1.0.0",
"description": "A todo api with node.js to sharp my skills",
"main": "src/index.js",
"repository": "https://github.com/FrankenSteinxD/todo-api.git",
"author": "Rashad Kokash <richardeo112@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"start": "NODE_ENV=production node build/index.js",
"build": "yarn clear && ./node_modules/.bin/babel src -d build",
"build:docs": "yarn clear:docs && ./node_modules/.bin/apidoc -i src -o docs",
"clear": "rm -rf ./build",
"clear:docs": "rm -rf docs",
"dev": "cross-env NODE_ENV=development ./node_modules/.bin/nodemon --watch src --exec ./node_modules/.bin/babel-node src/index.js",
"lint": "./node_modules/.bin/eslint .",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --require @babel/register --require babel-polyfill --exit --timeout 8000 test"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/register": "^7.4.4",
"apidoc": "^0.17.7",
"babel-eslint": "^10.0.2",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^5.2.0",
"eslint": "^6.0.1",
"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",
"eslint-plugin-security": "^1.4.0",
"husky": "^3.0.0",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn lint"
}
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@hapi/joi": "^15.1.0",
"@sentry/node": "5.5.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-brute": "^1.0.1",
"express-rate-limit": "^5.0.0",
"helmet": "^3.20.0",
"http-status": "^1.3.2",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.4",
"morgan": "^1.9.1",
"nodemailer": "^6.3.0",
"winston": "^3.2.1"
},
"apidoc": {
"name": "Todo App",
"description": "Todo app api with user accounts to sharp my node.js skills",
"title": "Todo Application API Docs",
"version": "1.0.0"
}
}