-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"name": "online-cv-api",
"version": "1.0.0",
"description": "Online CV for developers",
"main": "app/index.js",
"scripts": {
"clean": "rm -rf build && mkdir build",
"build-babel": "./node_modules/babel-cli/bin/babel.js -d ./build ./app -s",
"build": "npm run clean && npm run build-babel",
"start": "npm run build && node ./build/index.js",
"dev": "nodemon babel app/index.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier-standard",
"eslint app/ --fix --ignore-pattern *.test.js",
"git add"
]
},
"author": "Eugene Dzhevadov",
"license": "MIT",
"dependencies": {
"bcryptjs": "2.4.3",
"body-parser": "1.18.3",
"cors": "2.8.5",
"express": "4.16.4",
"gravatar": "1.7.0",
"jsonwebtoken": "8.4.0",
"lodash": "4.17.11",
"mongoose": "5.3.13",
"passport": "0.4.0",
"passport-jwt": "4.0.0",
"validator": "10.9.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.7.0",
"eslint": "5.9.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"husky": "1.2.0",
"lint-staged": "8.1.0",
"nodemon": "1.18.6",
"prettier-standard": "8.0.1"
}
}