-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.28 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
{
"name": "random-user",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "npm run install:apps",
"install:apps": "./apps_install.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"compose:up": "(cd app && docker-compose up -d --build)",
"compose:down": "(cd app && docker-compose down --remove-orphans)",
"compose:up:dev": "(cd app && docker-compose -f docker-compose.dev.yml up -d --build)",
"compose:down:dev": "(cd app && docker-compose -f docker-compose.dev.yml down --remove-orphans)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemaquejr/random-user.git"
},
"keywords": [],
"author": "Francisco Gemaque",
"devDependencies": {
"@testing-library/jest-dom": "5.15.0",
"@testing-library/react": "11.2.7",
"@testing-library/user-event": "12.8.3",
"axios": "^0.26.0",
"dotenv": "10.0.0",
"jest": "26.6.0",
"mocha": "9.2.0",
"mysql2": "2.3.3",
"sequelize": "^6.11.0",
"sequelize-cli": "^6.4.1"
},
"dependencies": {
"camelcase": "6.3.0",
"http-status-codes": "2.2.0"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/gemaquejr/random-user/issues"
},
"homepage": "https://github.com/gemaquejr/random-user#readme"
}