-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.86 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
47
48
49
50
51
52
53
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna run build",
"clean": "rimraf 'packages/**/lib'",
"clean:lock-files": "rimraf 'packages/**/yarn.lock'",
"clean:node-modules": "rimraf 'packages/**/node_modules'",
"clean:logs": "rimraf *.log && rimraf */**/*.log",
"clean:all": "run-s clean:lock-files clean:node-modules clean:logs",
"deploy": "run-s deploy:lint deploy:lerna",
"deploy:lint": "yarn lint",
"deploy:lerna": "lerna publish --conventional-commits --message 'chore: release new versions'",
"prerelease": "run-s prerelease:*",
"prerelease:lint": "yarn lint",
"prerelease:release": "lerna publish --conventional-prerelease --pre-dist-tag next",
"postinstall": "lerna bootstrap",
"lint": "run-s lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check 'packages/**/*.js'",
"prettier:format": "prettier --write 'packages/**/*.js'"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-preset-razzle": "^4.2.7",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^28.1.0",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"react": "^18.1.0",
"rimraf": "^3.0.2"
},
"workspaces": [
"packages/*",
"examples/*"
]
}