-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.85 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
{
"name": "algo-app",
"version": "1.0.0",
"description": "algo-app",
"main": "src/index.js",
"scripts": {
"test": "mocha --require @babel/register tests/src/*js",
"start": "nodemon src/index.js",
"lint:src": "eslint src/**/*.js --fix",
"lint:tests": "eslint tests/**/*.js --fix",
"babel": "./node_modules/.bin/babel",
"clean": "rimraf dist-server",
"transpile": "babel src --out-dir dist-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhi886/algo-app.git"
},
"author": "Abhishekh Maharjan",
"license": "ISC",
"bugs": {
"url": "https://github.com/abhi886/algo-app/issues"
},
"homepage": "https://github.com/abhi886/algo-app#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"config": "^3.3.6",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^5.11.10",
"multer": "^1.4.2",
"nodemon": "^2.0.6"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --config .prettierrc --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/register": "^7.13.8",
"chai": "^4.3.3",
"chai-http": "^4.3.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"mocha": "^8.3.1",
"prettier": "^2.2.1"
}
}