-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.78 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.78 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
{
"name": "serverless-node-dynamodb-ui",
"version": "2.0.0",
"description": "React/Redux-powered UI to front Serverless API",
"license": "MIT",
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "cross-env TS_NODE_PROJECT=tsconfig-webpack.json ts-node server.ts",
"build": "rimraf dist && cross-env NODE_ENV=production TS_NODE_PROJECT=tsconfig-webpack.json webpack --config ./webpack.prod.config.ts --progress",
"prod": "cross-env NODE_ENV=production TS_NODE_PROJECT=tsconfig-webpack.json ts-node server.ts",
"lint": "eslint 'src/**/*.{ts,tsx}' || exit 0",
"typecheck": "tsc --noEmit",
"analyze-dev": "rimraf stats.json && cross-env TS_NODE_PROJECT=tsconfig-webpack.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 TS_NODE_PROJECT=tsconfig-webpack.json 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/auth0-spa-js": "^1.10.0",
"classnames": "^2.5.1",
"immutable-assign": "^2.1.5",
"isomorphic-fetch": "^3.0.0",
"moment": "^2.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-expanding-textarea": "^2.3.6",
"react-ga": "^3.3.1",
"react-loading": "^2.0.3",
"react-redux": "^9.2.0",
"react-router": "^6.30.3",
"react-router-dom": "^6.30.3",
"redux": "^5.0.1",
"redux-saga": "^1.4.2",
"reselect": "^5.1.1",
"scheduler": "^0.26.0",
"util": "^0.12.5",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@redux-devtools/extension": "^4.0.0",
"@types/node": "^22.19.18",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/webpack": "^5.28.5",
"@types/webpack-env": "^1.18.8",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^8.0.0",
"eslint": "^10.3.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"globals": "^17.6.0",
"html-webpack-plugin": "^5.6.7",
"map.prototype.tojson": "^0.1.3",
"mini-css-extract-plugin": "^2.10.2",
"rimraf": "^6.1.3",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.5.0",
"ts-loader": "^9.5.7",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"url-loader": "^4.1.1",
"webpack": "^5.106.2",
"webpack-bundle-analyzer": "^5.3.0",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3"
}
}