-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.75 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.75 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"license": "MIT",
"name": "nx-starter",
"version": "0.0.2",
"author": "soheil.movahhedan@gmail.com",
"private": true,
"workspaces": [
"apps/*",
"libs/*"
],
"scripts": {
"commit": "git-cz",
"release": "standard-version",
"release:root:major": "yarn release -r major",
"release:website:pre-major": "yarn workspace @nx-starter/website release -pr major",
"release:website:major": "yarn release -r patch && yarn workspace @nx-starter/website release -r major",
"release:website:pre-minor": "yarn workspace @nx-starter/website release -pr minor",
"release:website:minor": "yarn release -r patch && yarn workspace @nx-starter/website release -r minor",
"release:website:patch": "yarn release -r patch && yarn workspace @nx-starter/website release -r patch"
},
"dependencies": {
"core-js": "^3.6.5",
"regenerator-runtime": "0.13.7",
"tslib": "^2.0.0"
},
"resolutions": {
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "^5"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/cz-commitlint": "^17.0.0",
"@nrwl/cli": "13.3.9",
"@nrwl/eslint-plugin-nx": "13.3.9",
"@nrwl/jest": "13.3.9",
"@nrwl/linter": "13.3.9",
"@nrwl/next": "13.3.9",
"@nrwl/node": "^13.4.2",
"@nrwl/nx-cloud": "latest",
"@nrwl/react": "13.3.9",
"@nrwl/tao": "13.3.9",
"@nrwl/web": "13.3.9",
"@nrwl/workspace": "13.3.9",
"@storybook/core": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "27.0.2",
"@types/micromatch": "^4.0.2",
"@types/node": "14.14.33",
"@types/react": "17.0.30",
"@types/react-dom": "17.0.9",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "~5.3.0",
"@typescript-eslint/parser": "~5.3.0",
"babel-jest": "27.2.3",
"branch-name-lint": "^2.1.1",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"eslint": "8.2.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "^4.2.1-rc.0-next-3dc41d8a2-20211223",
"eslint-plugin-tailwind": "^0.2.1",
"husky": "^7.0.4",
"jest": "27.2.3",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^12.1.4",
"nx": "^13.3.9",
"path": "^0.12.7",
"prettier": "^2.3.1",
"react-test-renderer": "17.0.2",
"standard-version": "^9.5.0",
"ts-jest": "27.0.5",
"typescript": "~4.4.3"
}
}