-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.47 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
{
"name": "winget-run",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env K8S_ENV=dev next dev",
"dev:prod": "next dev",
"build": "next build",
"serve": "next start --hostname 0.0.0.0",
"serve:dev": "cross-env K8S_ENV=dev next start --hostname 0.0.0.0",
"lint": "eslint **/*.{js,jsx,ts,tsx}",
"test": "jest"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"emotion": "^10.0.27",
"emotion-server": "^10.0.27",
"emotion-theming": "^10.0.27",
"isomorphic-unfetch": "^3.0.0",
"next": "9.4.2",
"react": "16.13.1",
"react-charts": "^2.0.0-beta.7",
"react-dom": "16.13.1",
"react-grid": "^4.0.4"
},
"devDependencies": {
"@emotion/babel-preset-css-prop": "^10.0.27",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"cross-env": "^7.0.2",
"eslint": "^6",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^5.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"jest": "^26.0.1",
"next-images": "^1.4.0",
"prettier": "^2.0.5",
"typescript": "^3.9.3"
}
}