-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.03 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": "photo-selector-be",
"version": "1.0.0",
"description": "Photo Selector Express App",
"main": "index.js",
"scripts": {
"build": "npm run build:clean && mkdir dist && cross-env NODE_ENV=production babel src -d ./dist",
"build:clean": "rimraf ./dist",
"lint": "eslint --ignore-path .gitignore",
"start": "cross-env $NODE_DEBUG_OPTION NODE_ENV=development nodemon ./bin",
"start-dev": "nodemon ./bin/www",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/viduni94/photo-selector-be.git"
},
"keywords": [
"expressjs",
"nodejs"
],
"author": "Viduni Wickramarachchi",
"license": "MIT",
"bugs": {
"url": "https://github.com/viduni94/photo-selector-be/issues"
},
"homepage": "https://github.com/viduni94/photo-selector-be#readme",
"dependencies": {
"celebrate": "^14.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.6.0",
"http-errors": "^1.7.2",
"http-status": "^1.5.0",
"mongoose": "^5.12.13",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"rimraf": "^3.0.2"
}
}