-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.38 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
{
"name": "connect-dashboard",
"version": "1.0.0",
"description": "Monitor and control Thecompany-Connect dev resources",
"main": "index.js",
"scripts": {
"test": "jest",
"makeIndexes": "create-index common/ src/dataServices/ src/stateManagement/ src/components/ --ignoreUnsafe --extensions jsx js",
"build:prod": "webpack -p",
"build:training": "webpack --env.AUDIENCE=training --env.NODE_ENV=production",
"build:engineering": "webpack --env.AUDIENCE=engineering --env.NODE_ENV=production",
"build": "npm run makeIndexes && webpack -d --env.AUDIENCE=engineering",
"watch": "webpack --watch --env.AUDIENCE=engineering",
"serve": "node backend/server.js",
"start": "npm run build && node --inspect backend/server.js",
"open": "xdg-open http://localhost:7891/vpcs",
"install": "npm run build",
"generateComponent": "yo ./generators/component"
},
"author": "Mike Hildebrand-Faust",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.141.0",
"axios": "^0.17.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chalk": "^2.4.1",
"dateformat": "^3.0.2",
"github": "^12.0.1",
"react": "^16.2.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.2.0",
"react-favicon": "0.0.11",
"react-redux": "^5.0.6",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-sticky": "^6.0.1",
"react-toastify": "^2.2.0",
"redux": "^3.7.2",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.76.0",
"sequelize": "^4.32.1",
"serve-static": "^1.13.1",
"tunnel-ssh": "^4.1.4"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babili-webpack-plugin": "^0.1.2",
"create-index": "^2.2.0",
"css-loader": "^0.28.7",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^22.4.2",
"node-sass": "^4.9.0",
"open-browser-webpack-plugin": "0.0.5",
"sass-loader": "^6.0.6",
"supertest": "^3.0.0",
"uglify-js": "^2.8.29",
"uglifyjs-webpack-plugin": "^1.1.1",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^2.0.4",
"webpack-hot-middleware": "^2.21.0",
"yeoman-generator": "^2.0.5",
"yo": "^2.0.3"
}
}