-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·92 lines (92 loc) · 2.74 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
{
"name": "adform-tech-assignment",
"version": "1.0.0",
"description": "Technical assignment for Adform",
"repository": "[email protected]:Shubhamk54/adformtechassign.git",
"author": "Shubham Kale <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start:dev": "webpack-dev-server --mode development --config webpack.config.js",
"build": "babel-node --max_old_space_size=8192 helpers/build.js",
"test": "jest",
"coverage": "jest --coverage",
"lint": "esw --ext .js --ext .jsx helpers app/src --color",
"lint:fix": "npm run lint -- --watch --fix"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-webpack-alias": "^2.1.2",
"chalk": "^2.4.2",
"copy-webpack-plugin": "^5.0.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-watch": "^6.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"path": "^0.12.7",
"react-test-renderer": "^16.9.0",
"redux-mock-store": "^1.5.3",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"dependencies": {
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"core-js": "^3.2.1",
"css-loader": "^3.2.0",
"date-fns": "^2.2.1",
"file-loader": "^4.2.0",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.8.0",
"react-bootstrap": "^1.0.0-beta.12",
"react-day-picker": "^7.3.2",
"react-dom": "^16.8.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"sass-loader": "^8.0.0"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/helpers/setupTests.js"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
}
}
}