-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.77 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.77 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
{
"name": "clueless",
"version": "1.0.0",
"description": "Clueless will help you obliterate your opponents.",
"main": "src/index.tsx",
"scripts": {
"build": "NODE_ENV=production webpack",
"test": "jest --verbose",
"test:watch": "npm run test -- --watch",
"start": "NODE_ENV=development webpack-dev-server",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"types": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "1.4.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"font-awesome": "^4.7.0",
"foundation-sites": "6.4.3",
"history": "^4.10.1",
"lodash": "^4.17.19",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.20",
"react-redux": "^7.2.0",
"redux": "4.0.5",
"redux-saga": "^1.1.3",
"reselect": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/types": "^7.9.5",
"@types/history": "^4.7.5",
"@types/jest": "^26.0.5",
"@types/lodash": "^4.14.150",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-redux": "^7.1.7",
"@types/redux-actions": "^2.6.1",
"@typescript-eslint/eslint-plugin": "4.6.1",
"@typescript-eslint/parser": "4.6.1",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-module-resolver": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.5.2",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"resolve-url-loader": "3.1.2",
"sass": "^1.26.3",
"sass-lint": "^1.13.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.4",
"typescript": "4.0.5",
"webpack": "4.44.2",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.1.2"
}
}