-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.62 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.62 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
{
"name": "apptabweb",
"version": "1.0.0",
"description": "website for apptab clients",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "webpack-dev-server --env development",
"start:prod": "node server.js",
"build:dev": "webpack --env development",
"build:prod": "webpack --env production",
"start": "node server.js",
"deploy:prod": "sh ./scripts/s3_deploy_prod.sh",
"deploy:test": "sh ./scripts/s3_deploy_test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/warrenronsiek/AppTabWeb.git"
},
"author": "Warren Ronsiek",
"license": "ISC",
"bugs": {
"url": "https://github.com/warrenronsiek/AppTabWeb/issues"
},
"homepage": "https://github.com/warrenronsiek/AppTabWeb#readme",
"dependencies": {
"aws-sdk": "^2.171.0",
"babel-polyfill": "^6.26.0",
"express": "^4.15.4",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"proptypes": "^1.1.0",
"react": "^15.6.1",
"react-addons-css-transition-group": "^15.6.2",
"react-cookie": "^1.0.5",
"react-dom": "^15.6.1",
"react-infinite-calendar": "^2.3.1",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.6",
"react-router": "^3.0.5",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-thunk": "^2.2.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@types/lodash": "^4.14.85",
"@types/node": "^8.0.51",
"@types/react": "^16.0.22",
"@types/react-bootstrap": "^0.31.7",
"@types/react-dom": "^16.0.3",
"@types/react-redux": "^5.0.12",
"@types/react-router": "^4.0.17",
"@types/react-router-bootstrap": "^0.24.2",
"@types/redux": "^3.6.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"html-webpack-template": "^6.0.1",
"json-loader": "^0.5.7",
"path": "^0.12.7",
"react-bootstrap": "^0.31.5",
"react-hot-loader": "^1.3.1",
"source-map-loader": "^0.2.1",
"style-loader": "^0.18.2",
"typescript": "^2.5.2",
"typescript-loader": "^1.1.3",
"url-loader": "^0.5.9",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2",
"webpack-merge": "^4.1.0"
}
}