forked from BearStudio/formiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.3 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
{
"name": "formiz",
"private": true,
"license": "MIT",
"author": {
"name": "Ivan Dalmet",
"email": "[email protected]",
"url": "https://github.com/ivan-dalmet"
},
"scripts": {
"bs": "lerna bootstrap && yarn packages:build",
"start": "lerna run start --parallel --stream",
"test": "lerna run test --parallel --scope @formiz/*",
"test:dev": "lerna run test:dev --parallel --scope @formiz/*",
"lint": "lerna run lint -- --fix",
"predeploy": "yarn test",
"deploy": "lerna publish --ignore-changes {documentation,examples}",
"postdeploy": "yarn docs:deploy",
"packages:build": "lerna run build --parallel --scope @formiz/*",
"docs:deploy": "yarn packages:build && lerna run deploy --stream --scope documentation",
"examples:build": "yarn packages:build && lerna run build --parallel --scope examples"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.30.0",
"@typescript-eslint/parser": "2.30.0",
"babel-eslint": "10.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "4.0.0",
"lerna": "3.20.2"
},
"workspaces": [
"examples",
"documentation",
"./packages/*"
]
}