-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.16 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
{
"name": "photonow",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "webpack serve --mode development --config ./webpack/config.dev.ts",
"build": "webpack --mode production --config ./webpack/config.prod.ts",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"google-map-react": "^2.1.7",
"lodash": "^4.17.20",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.8",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@types/copy-webpack-plugin": "^6.3.0",
"@types/dotenv-webpack": "^5.0.0",
"@types/google-map-react": "^2.1.0",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.9",
"@types/react": "^17.0.0",
"@types/react-dev-utils": "^9.0.4",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.12",
"@types/webpack": "^4.41.25",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-loader": "^8.2.1",
"copy-webpack-plugin": "^6.3.1",
"css-loader": "^5.0.1",
"dotenv-webpack": "^5.1.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-webpack-plugin": "^2.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"prettier": "^2.1.2",
"react-dev-utils": "^11.0.4",
"react-refresh": "^0.9.0",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"ts-node": "^9.0.0",
"type-fest": "^0.20.2",
"typescript": "^4.1.2",
"webpack": "^5.5.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"browserslist": [
"defaults",
"not dead"
]
}