generated from ttoss/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.09 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.09 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "fullstack-everything",
"private": true,
"version": "0.0.1",
"description": "A fullstack project.",
"scripts": {
"test": "lerna run test",
"version": "lerna version",
"build": "lerna run build",
"deploy": "lerna run deploy",
"list-packages": "lerna ls",
"reinstall": "yarn run remove-all-node-modules && yarn",
"remove-all-node-modules": "npx lerna exec -- rm -rf node_modules && rm -rf node_modules && rm -f yarn.lock",
"list-updates": "npx ncu && lerna exec -- npx ncu",
"update-all": "npx ncu -u && lerna exec -- npx ncu -u",
"prepare": "husky install"
},
"keywords": [
"monorepo"
],
"author": "Pedro Arantes <arantespp@gmail.com> (https://twitter.com/arantespp)",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@storybook/testing-react": "^0.0.16",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-relay": "^1.8.2",
"eslint-plugin-testing-library": "^4.6.0",
"husky": "^6.0.0",
"jest": "^27.0.3",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"npm-check-updates": "^11.6.0",
"prettier": "^2.3.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-prettier": "^1.2.0",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"workspaces": [
"packages/**/*"
],
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"theme-ui": "^0.9.1"
}
}