-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.82 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.82 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
{
"name": "portal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_ENV=development node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"lint": "eslint -c .eslintrc.json . && tsc -b tsconfig.json",
"test": "echo no tests yet",
"codecov": "echo no codecov"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@svgr/webpack": "^6.1.2",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.30",
"@types/styled-components": "^5.1.15",
"antd": "^4.16.13",
"express": "^4.17.3",
"file-loader": "^6.2.0",
"http-proxy-middleware": "^2.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "^16.1.5",
"next-images": "^1.8.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-loading-skeleton": "^3.1.0",
"react-select": "^5.2.1",
"recharts": "^2.9.0",
"sharp": "^0.32.6",
"styled-components": "^5.3.1",
"swr": "^1.3.0",
"typescript": "^4.4.4",
"url-loader": "^4.1.1",
"eslint": "^8",
"tailwindcss": "^3.4.13",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47"
},
"devDependencies": {
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.13.3",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1"
}
}