-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.83 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.83 KB
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
48
49
50
51
52
53
54
{
"name": "formalite",
"version": "0.0.0",
"description": "Generate MUI form with few line of code",
"devDependencies": {
"next": "12.2.5",
"lerna": "^3.22.1",
"husky": "^8.0.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@openapitools/openapi-generator-cli": "^2.5.1",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "8.9.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "7.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-sonarjs": "^0.13.0",
"lint-staged": "^12.4.1",
"prettier": "2.6.2",
"typescript": "^4.8.4"
},
"scripts": {
"start:website": "lerna run --scope website dev --stream",
"start:story": "lerna run --scope @novin-dev/formalite storybook --stream",
"prepare": "husky install",
"prepublishOnly": "lerna run build:local --scope @novin-dev/formalite",
"deploy:website" : "lerna run build --scope website",
"deploy:story" : "lerna run build:storybook --scope @novin-dev/formalite",
"test:story" : "lerna run test --scope @novin-dev/formalite",
"test:story-cover" : "lerna run test:coverage --scope @novin-dev/formalite"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix"
]
}
}