forked from remaxjs/remax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.35 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "root",
"private": true,
"version": "1.0.0",
"scripts": {
"watch": "concurrently \"lerna run build:cjs --parallel -- -w\" \"tsc -b -w\"",
"prebuild": "npm run clean:packages",
"build": "tsc -b && lerna run build:cjs",
"test": "lerna run --ignore babel-preset-remax --ignore website --ignore e2e-dummy --ignore e2e-mini --stream test",
"test:e2e": "lerna run --stream --scope e2e-dummy test",
"test:e2e-mini": "lerna run --stream --scope e2e-mini test",
"test:cov": "lerna run --ignore babel-preset-remax --ignore website --ignore e2e-dummy --ignore e2e-mini --stream test -- --collect-coverage",
"clean": "lerna clean",
"clean:packages": "lerna run clean",
"readme:copy": "lerna exec 'cp ../../README.md' . --scope remax --scope @remax/cli",
"readme:clean": "lerna exec 'rm README.md' --scope remax --scope @remax/cli",
"prepack": "npm run readme:copy",
"postpack": "npm run readme:clean",
"postinstall": "lerna bootstrap",
"lint": "eslint \"packages/*/src/**/*.{ts,tsx}\"",
"prerelease": "./scripts/prerelease",
"release": "lerna publish --force-publish --create-release=github --exact",
"postrelease": "./scripts/postrelease",
"site:build": "lerna run --scope website --stream build",
"site:deploy": "lerna run --scope website --stream deploy",
"install:codesandbox": "PUPPETEER_SKIP_DOWNLOAD=1 yarn install",
"authors": "./scripts/authors"
},
"dependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"husky": "^4.2.3",
"lerna": "^3.4.3",
"prettier": "^2.0.5",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@types/express": "^4.17.4",
"@types/webpack-dev-middleware": "^3.7.0",
"concurrently": "^5.2.0",
"lint-staged": ">=8",
"puppeteer": "~5.2.1",
"rimraf": "^3.0.2"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/remax"
},
"workspaces": [
"packages/*",
"e2e/*",
"website"
]
}