forked from cityofsandy/calix-csr-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.76 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
{
"name": "calix-csr-console",
"version": "0.0.1",
"license": "MIT",
"main": "./dist/webServer.js",
"description": "Ties in Calix APIs",
"repository": "https://github.com/cityofsandy/calix-csr-console.git",
"scripts": {
"test": "jest",
"build": "npm run clean && npm run webpack",
"webpack": "cross-env NODE_ENV=development node ./node_modules/webpack/bin/webpack --config webpack.dev.js --progress",
"build-prod": "cross-env NODE_ENV=production node ./node_modules/webpack/bin/webpack --config webpack.prod.js -p --progress",
"build-prod-server": "babel ./src/proxy/index.js --out-file ./dist/webServer.js",
"coverage": "nyc npm run test",
"clean": "del-cli dist",
"serve": "./node_modules/.bin/webpack-dev-server --open --config webpack.dev.js",
"start": "node ./dist/webServer.js"
},
"dependencies": {
"@babel/core": "^7.4.0",
"@babel/node": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/cli": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/runtime": "^7.6.3",
"@fortawesome/fontawesome-svg-core": "^1.2.6",
"@fortawesome/free-regular-svg-icons": "^5.4.1",
"@fortawesome/free-solid-svg-icons": "^5.4.1",
"@fortawesome/react-fontawesome": "0.1.4-1",
"base-64": "^0.1.0",
"bootstrap": "4.3.1",
"express": "^4.17.1",
"express-history-api-fallback": "^2.2.1",
"http-proxy-middleware": "^0.20.0",
"inspect": "0.0.2",
"npm": "^5.6.0",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.8",
"react-dom": "^16.8.6",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.0.0",
"shelljs": "^0.7.8",
"util-inspect": "^0.1.8",
"utils": "^0.3.1",
"xml-js": "^1.6.11"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^5.0.4",
"core-js": "^2.5.7",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.1.0",
"jest": "^23.6.0",
"jest-fetch-mock": "^1.6.6",
"nyc": "^14.1.1",
"react-test-renderer": "^16.5.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "4.28.4",
"webpack-bundle-analyzer": "^3.2.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
}
}