forked from compulim/react-scroll-to-bottom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.44 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
{
"name": "root",
"version": "4.2.1-0",
"description": "React container that will auto scroll to bottom",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"browser": "node packages/test-harness/src/host/dev/index.js http://localhost:5000/__tests__/",
"build": "lerna run build --stream",
"docker": "concurrently \"npm run docker:up\" \"npm run docker:watch\"",
"docker:down": "docker-compose down --rmi all",
"docker:up": "docker-compose down && docker-compose build --parallel && docker-compose up --scale chromium=2",
"docker:watch": "nodemon --exec \"docker-compose build --quiet -- webserver && docker-compose kill webserver && docker-compose rm --force --stop webserver && docker-compose up --detach -- webserver\" --ext html,js,json,map --on-change-only --watch __tests__ --watch packages/component/dist",
"precommit": "lint-staged",
"precommit:component": "cd packages && cd component && npm run precommit --",
"prepare": "husky install",
"start": "concurrently \"npm run start:*\"",
"start:build": "lerna run start --ignore=playground --parallel --stream",
"start:serve": "serve -c __tests__/serve.json",
"test": "jest"
},
"devDependencies": {
"concurrently": "^6.3.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"lerna": "^4.0.0",
"lint-staged": "^11.2.3",
"nodemon": "^2.0.13",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"serve": "^12.0.1"
}
}