-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"private": true,
"engines": {
"node": ">=8",
"npm": ">=5"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b packages/core packages/url-persistence",
"build:watch": "lerna exec -- yarn build --watch",
"prepare": "yarn run build",
"prerelease": "yarn run prettier:write && yarn run test:coverage && npm run build",
"publish": "lerna exec -- np",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --forceExit --colors",
"test:ci": "jest --ci --collectCoverage=true",
"prettier:check": "prettier --check 'packages/**/src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"prettier:write": "prettier --write 'packages/**/src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'"
},
"devDependencies": {
"@types/jest": "24.0.11",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"rimraf": "3.0.0",
"ts-jest": "^26.5.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "^4.4.4"
},
"version": "3.0.0"
}