forked from FakeFiller/fake-filler-extension
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 3.28 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
{
"name": "fake-filler",
"version": "4.3.1",
"description": "Fills all inputs in a page with dummy data.",
"scripts": {
"start": "npm run-script watch",
"build": "npm run-script build-prod",
"watch": "cross-env NODE_ENV=development webpack -w --config webpack.config.dev.ts",
"build-dev": "cross-env NODE_ENV=development webpack --config webpack.config.dev.ts",
"build-prod": "cross-env NODE_ENV=production webpack --config webpack.config.prod.ts",
"clean": "rimraf ./dist",
"lint": "eslint src/**/*"
},
"author": "Jim Hays",
"license": "MIT",
"private": true,
"dependencies": {
"bootstrap": "^4.5.2",
"caniuse": "^0.1.3",
"caniuse-lite": "^1.0.30001551",
"cssesc": "^3.0.0",
"file-saver": "^2.0.2",
"formik": "^2.2.0",
"immer": "^7.0.9",
"jquery": "^3.5.1",
"moment": "^2.29.1",
"randexp": "^0.5.3",
"react": "^16.13.1",
"react-beautiful-dnd": "^13.0.0",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/chrome": "^0.0.248",
"@types/copy-webpack-plugin": "^6.0.0",
"@types/cssesc": "^3.0.0",
"@types/dotenv-webpack": "^3.0.0",
"@types/eslint": "^7.2.4",
"@types/file-saver": "^2.0.1",
"@types/jquery": "^3.5.2",
"@types/node": "^14.11.8",
"@types/react": "^16.9.51",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^16.9.8",
"@types/react-modal": "^3.10.6",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.6",
"@types/terser-webpack-plugin": "^4.2.0",
"@types/webpack": "^4.41.22",
"@types/webpack-merge": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"autoprefixer": "^10.0.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.2.1",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"dotenv-webpack": "^3.0.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.1",
"fork-ts-checker-webpack-plugin": "^5.2.0",
"mini-css-extract-plugin": "^1.0.0",
"node-sass": "^4.14.1",
"postcss-loader": "^4.0.4",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"sass-loader": "^10.0.3",
"source-map-loader": "^1.1.1",
"terser-webpack-plugin": "^4.2.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.2.0"
}
}