-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.72 KB
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
{
"name": "teste-xpi",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:izanf/teste-xpi.git",
"author": "Izanderson Florencio <izandersonf@gmail.com>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --open --mode development --env.development",
"build": "webpack --mode production",
"storybook": "start-storybook",
"lint": "eslint ./src",
"fix": "eslint ./src --fix"
},
"dependencies": {
"history": "^4.9.0",
"qs": "^6.8.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-persist": "^6.0.0",
"redux-saga": "^1.0.5",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.1.11",
"@storybook/react": "^5.1.11",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"dotenv": "^8.1.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.5",
"img-loader": "^3.0.1",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}