-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.88 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
{
"name": "stocks",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"dev": "DEBUG='stocks*' NODE_PATH='.' node --experimental-specifier-resolution=node src/server/index.js",
"watch": "webpack --watch",
"build": "webpack",
"alpha": "node src/api/alpha/index.js"
},
"exports": {
"./*": "./*"
},
"author": "Kevin Townsend",
"license": "UNLICENSED",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.14.0",
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/preset-env": "^7.13.15",
"@babel/runtime": "^7.14.0",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^5.0.0-alpha.33",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"classnames": "^2.3.1",
"css-loader": "^5.2.4",
"debug": "^4.3.1",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"html-webpack-plugin": "^5.3.1",
"install": "^0.13.0",
"jest": "^29.6.4",
"joi": "^17.4.0",
"less": "^4.1.1",
"less-loader": "^8.1.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"moment": "^2.29.1",
"prop-types": "^15.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.0.9",
"react-query": "^3.16.0",
"react-rnd": "^10.3.0",
"react-router-dom": "^5.2.0",
"recharts": "^2.0.9",
"style-loader": "^2.0.0",
"webpack": "^5.36.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-dev-server": "^3.11.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/runtime-corejs3": "^7.14.0",
"eslint": "^7.25.0",
"eslint-plugin-react": "^7.23.2",
"eslint-webpack-plugin": "^2.5.4",
"file-loader": "^6.2.0",
"webpack-cli": "^5.1.4"
}
}