-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 969 Bytes
/
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
{
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=10.0.0",
"yarn": ">=1.12.0"
},
"scripts": {
"clean": "yarn workspaces run clean",
"build": "yarn workspaces run build",
"test": "yarn workspace localsync-core test && yarn workspace localsync test",
"release": "yarn workspaces run release"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@types/node": "^12.6.9",
"babel-loader": "^8.0.4",
"cross-env": "^5.2.0",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"prettier-tslint": "^0.4.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.15.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-eslint-rules": "^5.3.1",
"tslint-react": "^3.6.0",
"tslint-react-a11y": "^1.0.0",
"typescript": "^3.5.3"
}
}