-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.11 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.11 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
{
"name": "serverless-node-dynamodb-ui",
"version": "1.0.0",
"description": "React/Redux-powered UI to front Serverless API",
"license": "MIT",
"scripts": {
"dev": "ts-node server.ts",
"build": "cross-env NODE_ENV=production webpack --config ./webpack.prod.config.ts --progress --profile --colors",
"prod": "cross-env NODE_ENV=production ts-node server.ts",
"lint": "tslint --type-check --project 'tsconfig.json' 'src/**/*.ts?(x)' || exit 0",
"analyze-dev": "rimraf stats.json && webpack --config webpack.config.ts --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"analyze-prod": "rimraf stats.json && cross-env NODE_ENV=production webpack --config webpack.prod.config.ts --profile --json > stats.json && webpack-bundle-analyzer stats.json"
},
"repository": {
"type": "git",
"url": "https://github.com/jch254/serverless-node-dynamodb-ui"
},
"author": "Jordan Hornblow <jordan@jch254.com>",
"dependencies": {
"auth0-lock": "^10.20.0",
"classnames": "^2.2.5",
"history": "^4.7.2",
"immutable-assign": "^1.0.36",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.18.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-expanding-textarea": "^0.1.8",
"react-ga": "^2.2.0",
"react-geomicons": "^2.1.0",
"react-loadable": "^3.3.1",
"react-loading": "^0.1.4",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "next",
"rebass": "^0.3.4",
"redux": "^3.7.2",
"redux-recycle": "^1.4.0",
"redux-saga": "^0.15.6",
"reflexbox": "^3.0.0-0",
"reselect": "^3.0.1"
},
"devDependencies": {
"@types/auth0-lock": "^10.16.1",
"@types/classnames": "^2.2.3",
"@types/extract-text-webpack-plugin": "^2.1.0",
"@types/history": "^4.6.0",
"@types/html-webpack-plugin": "^2.28.0",
"@types/node": "^8.0.28",
"@types/optimize-css-assets-webpack-plugin": "^1.3.1",
"@types/react": "^16.0.5",
"@types/react-dom": "^15.5.4",
"@types/react-ga": "^2.1.1",
"@types/react-loadable": "^3.3.0",
"@types/react-redux": "^5.0.9",
"@types/react-router-dom": "^4.0.7",
"@types/react-router-redux": "^5.0.8",
"@types/rebass": "^0.2.18",
"@types/redux-recycle": "^1.2.2",
"@types/webpack": "^3.0.11",
"@types/webpack-dev-server": "^2.4.1",
"@types/webpack-env": "^1.13.1",
"awesome-typescript-loader": "^3.2.3",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"inline-chunk-manifest-html-webpack-plugin": "^1.1.1",
"map.prototype.tojson": "^0.1.3",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.1",
"style-loader": "^0.18.2",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.3.0",
"tslint-loader": "^3.5.3",
"tsutils": "^2.8.2",
"typescript": "2.5.2",
"url-loader": "^0.5.9",
"webpack": "3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-chunk-hash": "^0.4.0",
"webpack-dev-server": "^2.8.2"
}
}