-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
54
55
56
57
{
"name": "typescript-monorepo-example",
"version": "1.0.0",
"description": "An example typescript monorepo",
"scripts": {
"prepublish": "pnpm build",
"verify": "lerna run verify --stream",
"prettier": "lerna run prettier",
"build": "lerna run build",
"test": "NODE_ENV=development lerna run test --stream"
},
"author": "@CryogenicPlanet",
"license": "ISC",
"private": true,
"husky": {
"hooks": {
"pre-commit": "pnpm prettier",
"pre-push": "pnpm verify"
}
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.6.2",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-eslint": "^10.1.0",
"esbuild": "^0.12.5",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"jest": "^27.0.3",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"prettier-config-standard": "^4.0.0",
"ts-jest": "^27.0.2",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "^4.3.2",
"wait-on": "^5.3.0"
},
"workspaces": [
"packages/*"
]
}