-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·89 lines (89 loc) · 2.18 KB
/
package.json
File metadata and controls
executable file
·89 lines (89 loc) · 2.18 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
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
{
"name": "@whitecloakph/wc-devtools-web",
"version": "0.0.0",
"description": "Devtools for Firefox and Chrome",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "webpack --watch",
"proxy": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Allan Crisostomo <allan.crisostomo@whitecloak.com>",
"license": "MIT",
"repository": "https://github.com/whitecloakph/devtools-web.git",
"dependencies": {
"antd": "^3.6.3",
"axios": "^0.18.0",
"bootstrap": "^4.1.1",
"connected-react-router": "^4.3.0",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"express": "^4.16.3",
"history": "^4.7.2",
"nanoid": "^1.0.4",
"nodemon": "^1.17.5",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-autobind": "^1.0.6",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"eslint-config-airbnb": "^17.0.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
},
"eslintConfig": {
"extends": "airbnb",
"env": {
"browser": true,
"webextensions": true
},
"rules": {
"semi": [
"error",
"never"
],
"comma-dangle": [
"error",
"always"
],
"object-property-newline": [
"error",
{
"allowMultiplePropertiesPerLine": true
}
],
"object-curly-newline": [
"error",
{
"minProperties": 4,
"consistent": true
}
],
"react/jsx-max-props-per-line": [
"error",
1
]
}
}
}