-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.82 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
{
"name": "coding-challenge-examples",
"version": "1.1.0",
"description": "Coding challenge examples",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config config/webpack.config.dev.js",
"build": "NODE_ENV=production webpack --config config/webpack.config.prod.js",
"precommit": "pretty-quick --staged",
"prettier": "pretty-quick"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vizzuality/map-legend-example-app.git"
},
"keywords": [
"vizzuality",
"code-challenge",
"react",
"redux"
],
"author": "vizzuality",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vizzuality/map-legend-example-app/issues"
},
"homepage": "https://github.com/Vizzuality/map-legend-example-app#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.5.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"prettier": "^1.15.3",
"pretty-quick": "^1.10.0",
"style-loader": "^0.23.1",
"webpack": "^4.28.4",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-hot-loader": "^4.6.3",
"webpack-cli": "^3.2.1"
}
}