-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1013 Bytes
/
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
{
"name": "fullstack-shop",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/PhilStainer/fullstack-shop",
"author": "Phil Stainer <philstainer.dev@gmail.com>",
"license": "MIT",
"scripts": {
"dev:up": "docker-compose up",
"dev:down": "docker-compose down",
"dev:build": "docker-compose up --build --force-recreate",
"test:up": "docker-compose -f docker-compose.test.yml --env-file .env.test up",
"test:down": "docker-compose -f docker-compose.test.yml --env-file .env.test down",
"test:build": "docker-compose -f docker-compose.test.yml --env-file .env.test up --build --force-recreate"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"prettier": "^2.0.5"
}
}