This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
124 lines (124 loc) · 4.01 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "kappnav",
"version": "1.0.0",
"description": "UI application for kappnav",
"private": true,
"engines": {
"node": "^6.9.0"
},
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development node app.js",
"start:production": "cross-env NODE_ENV=production node app.js",
"clean": "del-cli dll public/*",
"debug": "node --debug app.js",
"dev": "nf --procfile Procfile-dev --port 3000 start",
"build": "npm run clean && webpack --config webpack.dll.js --progress && webpack --progress",
"build:production": "npm run build:dll:production && cross-env BUILD_ENV=production webpack",
"build:dll:production": "cross-env BUILD_ENV=production webpack --config webpack.dll.js",
"build:dll": "webpack --config webpack.dll.js --progress",
"shrinkwrap:clean": "del-cli node_modules npm-shrinkwrap.json && npm install --no-optional && npm prune && npm shrinkwrap",
"lint": "eslint --ext .jsx,.js .",
"lint:fix": "eslint --ext .jsx,.js --fix ."
},
"repository": {
"type": "git",
"url": "git@github.com:kappnav/ui.git"
},
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"assets-webpack-plugin": "3.9.x",
"axios": "^0.19.2",
"babel-core": "^6.26.0",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.1.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "6.26.0",
"body-parser": "^1.17.2",
"carbon-addons-cloud": "3.5.1",
"carbon-addons-cloud-react": "1.x",
"carbon-components": "9.x",
"carbon-components-react": "6.x",
"carbon-icons": "7.x",
"consolidate": "^0.14.1",
"cookie-parser": "^1.4.3",
"cross-env": "^5.1.4",
"csurf": "^1.10.0",
"dompurify": "^2.0.11",
"express": "^4.15.3",
"handlebars": "^4.0.10",
"http-proxy-middleware": "^0.17.4",
"js-yaml": "^3.10.0",
"log4js": "^4.3.1",
"moment": "^2.22.2",
"nconf": "^0.8.4",
"node-i18n-util": "^1.0.2",
"normalizr": "^3.2.4",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^2.1.0",
"react-ace": "^5.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.3.1",
"react-transition-group": "^2.8.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@hapi/hawk": "^7.1.0",
"@loadable/component": "^5.12.0",
"autoprefixer": "^8.6.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-stage-0": "^6.24.1",
"bulma": "^0.5.3",
"chai": "^4.0.0",
"classnames": "^2.2.5",
"compression-webpack-plugin": "^1.1.11",
"css-loader": "^1.0.0",
"del-cli": "^1.1.0",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"filemanager-webpack-plugin": "^1.0.20",
"flatpickr": "^4.5.0",
"git-revision-webpack-plugin": "^2.5.1",
"hamburgers": "^0.9.1",
"handlebars-loader": "^1.6.0",
"node-sass": "^4.9.4",
"properties-parser": "^0.3.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"sass-loader": "^7.3.1",
"style-loader": "^0.13.2",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.12.0",
"webpack-cli": "^3.3.2",
"webpack-md5-hash": "0.0.6",
"webpack-version-file": "^0.1.3"
}
}