-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·38 lines (38 loc) · 1.06 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
{
"name": "experience-history-operations",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:Vinhal/experience-history-operations.git",
"author": "Vinhal <lucvinhal@gmail.com>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"mongodb": "^3.1.10",
"mongoose": "^5.4.2",
"mongoose-unique-validator": "^2.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"request": "^2.88.0",
"should": "^13.2.3"
},
"scripts": {
"start": "nodemon src/index.js",
"test": "mocha",
"build": "sudo docker-compose build",
"up": "sudo docker-compose up",
"rebuild": "sudo docker-compose build && sudo docker-compose up"
}
}