-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
181 lines (181 loc) · 5.46 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "codecharacter-web-2021",
"version": "1.0.0",
"private": true,
"description": "Web App for CodeCharacter",
"main": "index.js",
"scripts": {
"predeploy": "npm run build",
"test": "jest -i",
"start": "webpack-dev-server --mode development --hot --progress --color --port 3000",
"build": "webpack -p --progress --colors",
"lint": "prettier --write \"src/**/*.{ts,tsx,css}\" \"__tests__/**/*.{ts,tsx,css}\" && tslint --project .",
"lint:fix": "tslint --project . --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test && npm run build"
}
},
"lint-staged": {
"*.{ts, tsx}": [
"npm run lint",
"git add ."
]
},
"jest": {
"roots": [
"<rootDir>/__tests__"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest",
"\\.(css)$": "<rootDir>/node_modules/jest-css-modules"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transformIgnorePatterns": [
"node_modules/(?!(pnotify|redux-persist)).+\\.js$"
],
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/setup/setupEnzyme.ts",
"testPathIgnorePatterns": [
"<rootDir>/__tests__/setup/"
],
"moduleNameMapper": {
"^app(.*)$": "<rootDir>/src/app$1"
}
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "1.2.12",
"@fortawesome/free-solid-svg-icons": "5.6.3",
"@fortawesome/react-fontawesome": "0.1.3",
"@types/classnames": "2.2.6",
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/history": "4.7.1",
"@types/jest": "^23.3.10",
"@types/node": "10.11.7",
"@types/pako": "^1.0.0",
"@types/react": "^16.9.18",
"@types/react-dom": "^16.0.9",
"@types/react-flags-select": "^1.1.2",
"@types/react-google-recaptcha": "^0.10.0",
"@types/react-paginate": "^6.2.0",
"@types/react-redux": "5.0.8",
"@types/react-router": "4.0.32",
"@types/react-router-redux": "^5.0.17",
"@types/react-split-pane": "^0.1.67",
"@types/redux-actions": "2.3.1",
"@types/redux-persist": "^4.3.1",
"@types/socket.io-client": "^1.4.32",
"@types/webpack": "4.4.16",
"@types/webpack-env": "1.13.6",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"css-loader": "^1.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.3.5",
"file-loader": "^2.0.0",
"gh-pages": "^2.0.1",
"hard-source-webpack-plugin": "^0.13.0",
"html-loader": "^1.0.0-alpha.0",
"html-webpack-plugin": "^4.0.0-alpha",
"husky": "^1.2.0",
"jest": "^23.6.0",
"jest-css-modules": "^1.1.0",
"lint-staged": "^8.1.0",
"mini-css-extract-plugin": "^0.4.4",
"pnotify": "4.0.0-alpha.2",
"postcss": "^7.0.5",
"postcss-browser-reporter": "^0.5.0",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.1.1",
"postcss-reporter": "^6.0.0",
"postcss-url": "^8.0.0",
"prettier": "^1.14.3",
"react-hot-loader": "^4.3.11",
"redux-devtools-extension": "^2.13.5",
"regenerator-runtime": "^0.13.1",
"style-loader": "^0.23.1",
"ts-jest": "^23.10.5",
"ts-loader": "^5.2.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"typesafe-actions": "^2.0.4",
"typescript": "^3.1.3",
"url-loader": "^1.1.2",
"webpack": "^4.20.2",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"@stomp/stompjs": "^5.4.3",
"@types/commonmark": "^0.27.3",
"@types/react-bootstrap": "^0.32.15",
"@types/react-router-dom": "^5.1.3",
"@types/react-router-hash-link": "^1.2.1",
"@types/reactour": "^1.13.1",
"@types/sockjs-client": "^1.1.1",
"apexcharts": "^3.15.3",
"bootstrap": "^4.2.1",
"classnames": "^2.2.6",
"code-character-renderer-20": "*",
"commonmark": "^0.28.1",
"copy-webpack-plugin": "^5.0.0",
"pako": "^1.0.10",
"react": "^16.5.2",
"react-ace": "^6.2.0",
"react-apexcharts": "^1.3.6",
"react-bootstrap": "^0.32.4",
"react-country-flag": "^1.0.1",
"react-dom": "^16.5.2",
"react-flags-select": "^2.1.2",
"react-ga": "^2.7.0",
"react-google-recaptcha": "^1.0.5",
"react-joyride": "^2.2.1",
"react-markdown": "^4.0.6",
"react-minimal-pie-chart": "^6.0.1",
"react-monaco-editor": "^0.22.0",
"react-paginate": "^6.2.1",
"react-player": "^1.15.2",
"react-redux": "^5.0.7",
"react-router": "4.3.1",
"react-router-dom": "^5.1.2",
"react-router-hash-link": "^1.2.2",
"react-router-redux": "^4.0.8",
"react-spinners": "^0.5.1",
"react-split-pane": "^0.1.84",
"reactour": "^1.16.0",
"redux": "^4.0.1",
"redux-actions": "^2.6.1",
"redux-persist": "^5.10.0",
"redux-saga": "^0.16.2",
"socket.io-client": "^2.2.0",
"sockjs-client": "^1.4.0",
"styled-components": "^5.2.1",
"zlib": "^1.0.5"
}
}