-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.23 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
{
"private": true,
"name": "intly-root",
"scripts": {
"clean": "lerna clean -y && rimraf node_modules/intly*",
"bootstrap": "lerna bootstrap && lerna run prepublish",
"publish": "lerna publish",
"build": "lerna exec yarn build",
"test": "lerna exec yarn test",
"lint": "tslint -p tsconfig.json -t stylish",
"format": "prettier --config prettier.config.js --write '**/*.+(ts|tsx|js|md|json)'",
"example:react-client": "yarn workspace intly-example-react-client start",
"example:react-ssr": "yarn workspace intly-example-react-ssr dev"
},
"engines": {
"node": ">=10.10.0",
"yarn": ">=1.12.0"
},
"devDependencies": {
"husky": "^1.3.1",
"lerna": "^3.8.1",
"lint-staged": "^8.1.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.15.0",
"tslint-microsoft-contrib": "^6.0.0",
"typescript": "^3.1.1"
},
"workspaces": [
"packages/*",
"examples/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --config prettier.config.js --write '**/*.+(ts|tsx|js|md|json)'",
"git add"
]
}
}