-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.88 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
{
"name": "ironhack-mars-rover-kata",
"version": "2.0.0",
"description": "A variation of the Ironhack Coding Bootcamp challenge.",
"private": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"play": "node src/command-line.js",
"watch": "webpack --watch",
"start": "webpack-dev-server --config build/webpack.config.js --env.env=dev",
"build": "webpack --config build/webpack.config.js --env.env=prod",
"build:analyze": "npm run build -- --env.addon=bundleanalyze --env.addon=bundlevisualizer",
"lint:fix": "node_modules/.bin/eslint -c ./.eslintrc.yml . --fix"
},
"author": "Andres Weber",
"license": "ISC",
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"dotenv-webpack": "^1.8.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^6.0.0",
"image-webpack-loader": "^6.0.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5"
}
}