-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.95 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.95 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": "private-projects-wizard",
"version": "1.0.0",
"description": "A form wizard to help you include private python packages in your projects.",
"main": "webpack.config.js",
"scripts": {
"compile": "if [ \"$NODE_ENV\" = \"production\" ]; then\n\twebpack -p\nelse\n\twebpack -d\nfi",
"rebuild": "docker-compose rm -f -s web && docker-compose build --force-rm web",
"hmr": "webpack-dev-server --config webpack.config.hmr.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/revsys/private-packages-wizard.git"
},
"author": "RevSys",
"license": "BSD-3-Clause",
"private": true,
"bugs": {
"url": "https://github.com/revsys/private-packages-wizard/issues"
},
"homepage": "https://github.com/revsys/private-packages-wizard#README",
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"css-loader": "^3.1.0",
"history": "^4.7.2",
"jquery": "^3.5.0",
"lodash": "^4.17.21",
"lodash-webpack-plugin": "^0.11.5",
"node-sass": "^4.5.3",
"path": "^0.12.7",
"popper.js": "^1.12.9",
"postcss-loader": "^2.0.8",
"precss": "^4.0.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.0.0",
"react-github-fork-ribbon": "^0.5.1",
"react-hot-loader": "^3.1.3",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.8",
"reactstrap": "^5.0.0-alpha.3",
"redux": "^3.0.0",
"redux-actions": "^2.2.1",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.3.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"remove": "^0.1.5",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^4.27.1",
"webpack-bundle-tracker": "^0.4.2-beta",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"optionalDependencies": {
"fsevents": "2.0.7"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"express": "^4.17.1",
"html-webpack-plugin": "^3.2.0"
}
}