-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.49 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
{
"name": "react-course-v2",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"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": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"workspace-generator": "nx workspace-generator"
},
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"classnames": "^2.3.1",
"core-js": "^3.6.5",
"document-register-element": "1.13.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^6.0.2",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^15.4.3",
"regenerator-runtime": "0.13.7",
"remark-code-blocks": "^2.0.1",
"remark-emoji": "^2.2.0",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.1",
"to-vfile": "^7.0.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.0.2",
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@nrwl/cli": "12.7.2",
"@nrwl/cypress": "12.7.2",
"@nrwl/eslint-plugin-nx": "12.7.2",
"@nrwl/jest": "12.7.2",
"@nrwl/react": "12.7.2",
"@nrwl/tao": "12.7.2",
"@nrwl/web": "12.7.2",
"@nrwl/workspace": "12.7.2",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.0-rc.2",
"@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.8",
"@types/react-syntax-highlighter": "13.5.2",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"babel-jest": "26.2.2",
"copy-webpack-plugin": "^9.0.1",
"cypress": "^4.1.0",
"cypress-cucumber-preprocessor": "4.2.0",
"dotenv": "10.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "7.10.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "27.0.3",
"jest-fetch-mock": "^3.0.3",
"mini-css-extract-plugin": "^2.1.0",
"prettier": "2.3.2",
"react-refresh": "^0.10.0",
"source-map-loader": "^3.0.0",
"terser-webpack-plugin": "^5.1.1",
"ts-jest": "27.0.3",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "4.3.5",
"webpack": "^5.47.0",
"webpack-dev-server": "4.0.0-rc.0",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0",
"webpack-sources": "^3.0.2"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": false,
"stepDefinitions": "src/integration/common"
},
"resolutions": {
"@babel/core": "7.13.15",
"@babel/preset-env": "7.13.15"
}
}