-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.37 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
{
"name": "fullstack-template",
"version": "1.0.0",
"description": "Fullstack MERN template, good for medium to large size application.",
"main": "index.js",
"scripts": {
"up": "docker-compose -f docker-compose.dev.yml up -d --build --force-recreate",
"down": "docker-compose -f docker-compose.dev.yml down",
"stop": "docker-compose -f docker-compose.dev.yml stop",
"prod": "docker-compose -f docker-compose.prod.yml up -d --build --force-recreate",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false cd ./packages/client && yarn install --production=false && yarn run build",
"build-prod": "cd ./packages/client && yarn run build && cd ../.. && yarn run start",
"start": "set NODE_ENV=production && cd ./packages/server && yarn install && yarn run start"
},
"repository": "https://github.com/ericz99/fullstack-template.git",
"author": "Eric Zhang <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.18.2"
}
}