-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "easyroute",
"private": true,
"devDependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-typescript": "^6.0.0",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"babel-jest": "^26.1.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"node-notifier": ">=8.0.1",
"prettier": "^2.0.5",
"regexparam": "^1.3.0",
"rollup": "^2.26.11",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"simple-git-hooks": "^2.5.1",
"tslib": "^2.0.1",
"typedoc": "^0.20.32",
"typescript": "^3.9.7"
},
"scripts": {
"postinstall": "lerna bootstrap --hoist --no-ci",
"build": "lerna run build --concurrency=1 --stream",
"test": "lerna run test --concurrency=1 --stream",
"lint": "lerna run lint --concurrency=1 --stream",
"publish:npm": "lerna publish from-package",
"test:lint": "npm run lint && npm run test",
"lintstaged": "lint-staged"
},
"workspaces": [
"packages/*"
],
"simple-git-hooks": {
"pre-commit": "npm run lintstaged"
}
}