-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.61 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
{
"name": "star-wars",
"private": true,
"version": "0.1.0",
"description": "Star Wars character comparison app",
"main": "index.js",
"license": "MIT",
"keywords": [
"react",
"styled-components",
"webpack"
],
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack --mode production",
"format:styles": "stylelint --fix './src/**/*.js'",
"lint:js": "eslint .",
"format:js": "prettier --write \"**/*.{js,jsx,json}\"",
"precommit": "yarn format:js && yarn format:styles && yarn lint:js"
},
"dependencies": {
"@babel/runtime": "7.9.6",
"babel-plugin-styled-components": "1.10.7",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-select": "3.1.0",
"styled-components": "5.1.1",
"use-sound": "1.0.2"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-transform-runtime": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"eslint": "7.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.3",
"file-loader": "6.0.0",
"html-loader": "1.1.0",
"html-webpack-plugin": "4.3.0",
"prettier": "2.0.5",
"react-inlinesvg": "1.2.0",
"stylelint": "13.5.0",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-order": "4.0.0",
"url-loader": "4.1.0",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0"
}
}