-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 851 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
{
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.1",
"eslint": "^7.28.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"lerna": "^4.0.0",
"prettier": "^2.3.1"
},
"license": "MPL-2.0",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"dev": "lerna run --parallel dev",
"format": "npx prettier --write \"./**/*.{ts,js,json,md}\"",
"lint": "npx eslint . --ext .ts,.tsx",
"test": "lerna run test",
"compose-up": "docker-compose up -d"
},
"workspaces": [
"packages/*"
],
"repository": {
"url": "https://github.com/pxseu/pxseu.com"
}
}