This repository has been archived by the owner on Nov 5, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
118 lines (118 loc) · 3.86 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "wildme.org",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-script-os",
"start:default": "NODE_ENV=development DEPLOY_TARGET=none webpack-dev-server --config ./config/webpack/webpack.dev.js",
"start:win32": "$env:NODE_ENV=\"development\" & $env:DEPLOY_TARGET=\"none\" & webpack-dev-server --config ./config/webpack/webpack.dev.js",
"lint": "./node_modules/.bin/eslint --fix \"src/**/*.{js,jsx}\"",
"format": "./node_modules/.bin/prettier --write \"src/**/*.{js,jsx}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"build": "rm -rf build && NODE_ENV=production DEPLOY_TARGET=azure webpack --config ./config/webpack/webpack.prod.js",
"ghpages": "rm -rf docs && NODE_ENV=production DEPLOY_TARGET=ghpages webpack --config ./config/webpack/webpack.staging.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WildMeOrg/wildme.org.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WildMeOrg/wildme.org/issues"
},
"homepage": "https://www.wildme.org/",
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"@hot-loader/react-dom": "^16.8.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^9.0.1",
"config": "^3.2.1",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^1.0.1",
"eslint": "^6.2.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.6.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.3",
"lint-staged": ">=8",
"mini-css-extract-plugin": "^0.8.0",
"normalize.css": "^8.0.1",
"prettier": "1.15.1",
"prettier-eslint": "^8.8.2",
"prop-types": "^15.6.2",
"raw-loader": "^4.0.2",
"react-helmet": "^5.2.1",
"react-hot-loader": "^4.12.8",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"run-script-os": "^1.1.5",
"style-loader": "^0.23.1",
"styled-components": "^4.1.3",
"svg-inline-loader": "^0.8.0",
"terser-webpack-plugin": "^1.2.2",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.1.4",
"write-file-webpack-plugin": "^4.5.0"
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@formatjs/intl-numberformat": "4.2.0",
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.48",
"@material-ui/pickers": "^3.2.10",
"@svgr/webpack": "^4.3.3",
"axios": "^0.21.1",
"clsx": "^1.1.0",
"date-fns": "^2.11.1",
"google-map-react": "^1.1.7",
"history": "^4.9.0",
"lodash-es": "^4.17.15",
"query-string": "^6.9.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-intl": "^4.2.2",
"react-markdown": "^5.0.3",
"react-player": "^2.4.0",
"uuid": "^3.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
]
}
}