-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "frontender-code-challenge",
"version": "1.0.0",
"description": "A small node/react project to skill check frontend applicants",
"main": "index.js",
"author": "",
"packageManager": "[email protected]",
"engines": {
"node": ">=16.20.0",
"npm": "^8.19.4",
"yarn": "1.22.19"
},
"scripts": {
"clean": "rimraf static/dist/*",
"build:csr": "webpack --config webpack/webpack.client.config.js",
"watch:csr": "webpack watch --config webpack/webpack.client.config.js",
"run:csr": "node ./servers/server.csr.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KQED/frontender-code-challenge.git"
},
"dependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-react-inline-elements": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@reduxjs/toolkit": "^1.9.7",
"babel-loader": "^9.1.3",
"cross-fetch": "^4.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"dotenv": "^16.3.1",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"eslint-webpack-plugin": "^4.0.1",
"express": "^4.18.2",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.19.0",
"redux": "^4.2.1",
"sass": "^1.69.5",
"sass-lint-webpack": "^1.0.4",
"sass-loader": "^13.3.2",
"source-map-loader": "^4.0.1",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}