-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
131 lines (131 loc) · 4.4 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "nx-frontends",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"postinstall": "is-ci || npx husky install",
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format:check": "nx format:check",
"format:write": "nx format:write",
"format": "npm run format:write",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"clean": "node ./tools/scripts/cleanup.js",
"clean:gatsby-site": "node ./tools/scripts/cleanup-gatsby.js gatsby-site",
"dist-app": "node ./tools/scripts/serve-dist-app.js",
"dist-storybook": "node ./tools/scripts/serve-dist-storybook.js",
"nx:calculate-commands": "node ./tools/scripts/nx-calculate-commands.js",
"nx:run-many": "node ./tools/scripts/nx-run-many.js",
"nx:run-all": "node ./tools/scripts/nx-run-all.js",
"nx:run-one": "node ./tools/scripts/nx-run-one.js",
"git-clean:build:tags": "node ./tools/scripts/git-clean-ci-build-tags.js",
"git-clean:build:branches": "node ./tools/scripts/git-clean-build-branches.js",
"git-publish:builds": "node ./tools/scripts/git-push-apps-builds-to-branches.js",
"git-publish:storybook-builds": "node ./tools/scripts/git-push-storybook-builds-to-branch.js",
"merge-cobertura": "node ./tools/scripts/merge-cobertura.js",
"workspace-generator": "nx workspace-generator"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"private": true,
"dependencies": {
"clsx": "^1.1.1",
"document-register-element": "1.13.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "5.2.1",
"react-router-dom": "5.2.0"
},
"devDependencies": {
"@angular-devkit/schematics": "10.1.6",
"@babel/core": "7.9.6",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.9.0",
"@nrwl/cli": "12.0.6",
"@nrwl/cypress": "12.0.6",
"@nrwl/eslint-plugin-nx": "12.0.6",
"@nrwl/gatsby": "12.0.6",
"@nrwl/jest": "12.0.6",
"@nrwl/linter": "12.0.6",
"@nrwl/react": "12.0.6",
"@nrwl/storybook": "12.0.6",
"@nrwl/tao": "12.0.6",
"@nrwl/web": "12.0.6",
"@nrwl/workspace": "12.0.6",
"@storybook/addon-essentials": "^6.0.28",
"@storybook/addon-knobs": "^6.1.11",
"@storybook/react": "^6.1.11",
"@svgr/webpack": "^5.4.0",
"@testing-library/react": "11.2.5",
"@types/jest": "26.0.8",
"@types/node": "14.14.33",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-router-dom": "5.1.7",
"@types/webpack": "4.41.21",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"babel-jest": "26.2.2",
"babel-loader": "8.1.0",
"babel-plugin-module-resolver": "4.0.0",
"babel-preset-gatsby": "^0.12.1",
"core-js": "^3.8.3",
"cypress": "^3.8.2",
"dotenv": "8.2.0",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "4.2.0",
"fs-extra": "^8.1.0",
"gatsby": "^2.32.3",
"gatsby-image": "^2.11.0",
"gatsby-plugin-manifest": "^2.10.0",
"gatsby-plugin-offline": "^3.8.0",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-root-import": "^2.0.5",
"gatsby-plugin-sass": "^3.0.0",
"gatsby-plugin-sharp": "^2.12.2",
"gatsby-plugin-svgr": "^2.1.0",
"gatsby-plugin-typescript": "^2.10.0",
"gatsby-source-filesystem": "^2.9.1",
"gatsby-transformer-sharp": "^2.12.0",
"gh-pages": "^2.2.0",
"husky": "^6.0.0",
"is-ci": "^3.0.0",
"jest": "26.2.2",
"jest-junit": "^10.0.0",
"open": "^7.0.2",
"prettier": "2.2.1",
"prop-types": "15.7.2",
"sass": "^1.29.0",
"serve-handler": "^6.1.2",
"sharp": "^0.26.1",
"shelljs": "^0.8.4",
"ts-jest": "26.4.0",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "4.1.4",
"url-loader": "^3.0.0",
"xml2js": "^0.4.23"
}
}