-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.24 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.24 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
{
"name": "enhanced_inventory_client",
"version": "1.0.0",
"description": "",
"main": "./src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"prettier": "prettier --write '**/*.js'",
"prettier:check": "prettier --check '**/*.js'",
"build": "webpack --mode production",
"bundle": "webpack",
"watch": "webpack --watch",
"start": "npm run bundle && webpack-dev-server --config webpack.config.js",
"prod": "webpack-dev-server --config webpack.common.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jieseob1/Enhanced_Inventory_Client.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jieseob1/Enhanced_Inventory_Client/issues"
},
"homepage": "https://github.com/jieseob1/Enhanced_Inventory_Client#readme",
"devDependencies": {
"@types/react-dom": "^18.0.0",
"@types/styled-components": "^5.1.26",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.8.4",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@editorjs/editorjs": "^2.28.2",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@shopify/polaris": "^11.26.0",
"@shopify/polaris-icons": "^7.13.0",
"@types/react": "^18.0.0",
"axios": "^1.4.0",
"chart.js": "^4.4.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-prop-types": "^0.4.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.15.0",
"recharts": "^2.10.4",
"styled-components": "^5.3.11",
"typescript": "^5.1.6"
}
}