forked from Esri/water-balance-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.11 KB
/
package.json
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "project-name",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests",
"start": "webpack-dev-server --mode development --open",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vannizhang/React-TypeScript-App-Template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vannizhang/{project-name}/issues"
},
"homepage": "https://github.com/vannizhang/{project-name}#readme",
"lint-staged": {
"src/**/*.{ts,tsx,json}": [
"prettier --write",
"eslint src --fix",
"jest --bail --findRelatedTests --passWithNoTests"
]
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/classnames": "^2.2.10",
"@types/jest": "^29.5.11",
"@types/react-redux": "^7.1.16",
"@types/react-responsive": "^8.0.2",
"@types/redux-mock-store": "^1.0.3",
"@typescript-eslint/eslint-plugin": "6.12",
"@typescript-eslint/parser": "6.12",
"@vue/preload-webpack-plugin": "^2.0.0",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.1",
"eslint": "8.54",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"husky": "^8.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "2.7",
"postcss": "8.4",
"postcss-loader": "7.3",
"postcss-preset-env": "8.4",
"prettier": "^2.7.1",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.3",
"tailwindcss": "3.3",
"terser-webpack-plugin": "^5.1.3",
"typescript": "^5.3.2",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "4.10",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"@arcgis/core": "^4.30.8",
"@types/d3": "^5.7.2",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/shortid": "0.0.29",
"@types/styled-components": "^5.1.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"d3": "^5.16.0",
"date-fns": "^2.14.0",
"helper-toolkit-ts": "^1.1.13",
"nanoid": "^5.0.7",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"styled-components": "^5.1.1"
}
}