-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 989 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
{
"name": "rockset",
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.32.0",
"@typescript-eslint/parser": "^2.32.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"lerna": "^4.0.0",
"ts-jest": "^25.5.1"
},
"resolutions": {
"node-fetch": "^2.6.7"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start": "lerna run --parallel start",
"build": "lerna run build --stream",
"lint": "lerna run lint",
"all": "lerna run build --stream && lerna run lint && lerna run test",
"test": "lerna run test",
"lerna-publish": "lerna publish from-git",
"release-all": "lerna version --exact --force-publish"
}
}