-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.83 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
{
"name": "compalary",
"version": "0.0.0",
"description": "Web app to compare salaries",
"main": "index.js",
"author": "Daniel González Reina",
"license": "MIT",
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"dev": "webpack serve",
"test-once": "jest",
"test": "jest --watch"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.2.0",
"jsdom": "^19.0.0",
"mini-css-extract-plugin": "^2.4.5",
"sass-loader": "^12.4.0",
"standard": "^12.0.1",
"style-loader": "^0.21.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"dependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"babel-loader": "^9.1.3",
"babel-polyfill": "^6.26.0",
"immer": "^10.1.1",
"node-sass": "^9.0.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-select": "^5.8.0",
"react-virtualized-select": "^3.1.3",
"redux": "^5.0.1",
"uuid": "^9.0.1"
},
"jest": {
"moduleNameMapper": {
".*\\.(css|sass)$": "<rootDir>/test/dummyStyle.js"
},
"setupFiles": [
"./test/test_setup.js"
],
"verbose": true
},
"standard": {
"parser": "babel-eslint"
}
}