-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.99 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.99 KB
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
{
"name": "brastlewark",
"version": "1.0.0",
"description": "React app to help the IOL team with trading in Brastlewark",
"main": "/src/index.js",
"scripts": {
"start": "npm run build && node server/index.js",
"build": "webpack --config=config/webpack/webpack.prod.js",
"dev": "webpack-dev-server --config=config/webpack/webpack.dev.js --watch --open",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest --coverage --watchAll --config=config/jest.json"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/osanchezdev/iol-challenge.git"
},
"keywords": [
"brastlewark",
"iol",
"gnome-finder"
],
"author": "Oscar Sanchez",
"license": "ISC",
"bugs": {
"url": "https://github.com/osanchezdev/iol-challenge/issues"
},
"homepage": "https://github.com/osanchezdev/iol-challenge#readme",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@testing-library/jest-dom": "^5.11.3",
"@types/jest": "^26.0.10",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.0",
"jest-enzyme": "^7.1.2",
"mini-css-extract-plugin": "^0.10.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"sass-loader": "^9.0.3",
"simple-progress-webpack-plugin": "^1.1.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.1"
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"@hookform/resolvers": "^0.1.0",
"axios": "^0.19.2",
"bootstrap": "^4.5.2",
"express": "4.17.1",
"framer-motion": "^2.4.2",
"prop-types": "^15.7.2",
"query-string": "^6.13.1",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-hook-form": "^6.4.0",
"react-infinite-scroll-component": "^5.0.5",
"react-lazy-load-image-component": "^1.5.0",
"react-router-dom": "^5.2.0",
"yup": "^0.29.3"
}
}