-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.45 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": "nivo-components-demo",
"version": "1.0.0",
"description": "Simple data visualization demo utilizing Nivo",
"private": false,
"author": "Shihlin Lu",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@nivo/bar": "^0.59.0",
"@nivo/core": "^0.59.0",
"@nivo/line": "^0.58.0",
"@sentry/browser": "^5.2.1",
"@sentry/webpack-plugin": "^1.6.2",
"@types/enzyme": "^3.9.2",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/fetch-mock": "^7.2.3",
"@types/jest": "^24.0.13",
"@types/moment-timezone": "^0.5.12",
"@types/query-string": "^6.3.0",
"@types/ramda": "^0.26.8",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-intl": "^2.3.17",
"@types/react-redux": "^7.0.9",
"@types/react-router": "^5.0.0",
"@types/react-router-dom": "^4.3.3",
"@types/redux-mock-store": "^1.0.1",
"@types/styled-components": "^4.1.15",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-react-intl": "^3.0.1",
"babel-plugin-styled-components": "^1.10.0",
"clean-webpack-plugin": "^2.0.2",
"compression-webpack-plugin": "^2.0.0",
"connected-react-router": "^6.4.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"fetch-mock": "^7.3.3",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-styled-components": "^6.3.1",
"@material-ui/core": "^4.1.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.25",
"node-fetch": "^2.5.0",
"prettier": "^1.18.2",
"query-string": "^6.7.0",
"ramda": "0.26.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-intl": "^2.8.0",
"react-redux": "^7.0.3",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"redux-saga": "^1.0.2",
"redux-sentry-middleware": "0.0.15",
"reselect": "^4.0.0",
"styled-components": "^4.3.1",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.7.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.0",
"typescript": "^3.5.0",
"webpack": "^4.31.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1"
},
"scripts": {
"build": "webpack --mode development",
"start": "webpack-dev-server --mode development --hot",
"test": "jest --coverage --no-cache",
"test-no-coverage": "jest --no-coverage --no-cache",
"test-watch": "jest --watch --no-coverage",
"lint": "eslint ./src --ext .ts --ext .tsx",
"lint:css": "stylelint './src/**/*.ts*'"
}
}