-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
112 lines (112 loc) · 3.56 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
103
104
105
106
107
108
109
110
111
112
{
"name": "dora",
"version": "0.3.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^1.8.8",
"@cityofzion/dora-ts": "^0.1.0",
"@cityofzion/neon-js": "^5.0.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@sentry/react": "^7.61.0",
"@workday/canvas-kit-react": "^9.1.4",
"bignumber.js": "^9.0.1",
"bs58check": "^2.1.2",
"classnames": "^2.2.6",
"crypto-js": "^4.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"framer-motion": "^4.1.17",
"identity-obj-proxy": "^3.0.0",
"lodash": "^4.17.20",
"material-design-icons": "^3.0.1",
"material-ui": "^0.20.2",
"moment": "^2.25.3",
"neo-convertor": "0.0.2",
"node-sass": "^4.14.1",
"query-string": "7.0.0",
"react": "^16.13.1",
"react-burger-menu": "^2.6.17",
"react-copy-to-clipboard": "^5.0.2",
"react-country-flag": "^2.3.0",
"react-dom": "^16.13.1",
"react-loading-skeleton": "^2.1.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-select": "^4.3.1",
"react-test-renderer": "^16.13.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"rss-parser": "^3.8.0",
"simple-line-icons": "^2.4.1",
"victory": "^35.0.9"
},
"devDependencies": {
"@babel/preset-typescript": "^7.9.0",
"@iconify/icons-simple-line-icons": "^1.0.3",
"@iconify/react": "^1.1.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/bs58check": "^2.1.0",
"@types/classnames": "^2.2.10",
"@types/crypto-js": "^3.1.47",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.157",
"@types/node": "^12.0.0",
"@types/react": "^17.0.3",
"@types/react-burger-menu": "^2.6.1",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.5",
"@types/react-select": "^4.0.13",
"@types/react-test-renderer": "^16.9.2",
"@types/redux-logger": "^3.0.7",
"@types/redux-mock-store": "^1.0.2",
"@types/redux-thunk": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"gh-pages": "^2.1.1",
"prettier": "^2.0.5",
"react-error-overlay": "6.0.9",
"react-scripts": "^4.0.3",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"typescript": "~4.3.5"
},
"scripts": {
"start": "react-scripts start",
"ts-build": "tsc -b",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint -c .eslintrc --max-warnings=0 ./src --ext .ts,.tsx",
"ci-lint": "eslint -c .eslintrc --max-warnings=0 ./src --ext .ts,.tsx",
"format": "prettier --write ./src",
"deploy": "aws s3 sync ./build s3://neoscan/prod --acl public-read",
"deploy:develop": "aws s3 sync ./build s3://neoscan/dev --acl public-read",
"deploy:stage": "aws s3 sync ./build s3://neoscan/stage --acl public-read"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}