-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
{
"private": true,
"name": "country-profiles",
"version": "0.1.1",
"homepage": "https://country-profiles.unstatshub.org/",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && npm run build-storybook",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public -o build/docs",
"format": "eslint --fix src && prettier --write '**/*(*.json|*.css|*.md)'",
"clean": "rm -rf ./node_modules && rm -rf ./build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"serve": "serve build"
},
"dependencies": {
"calcite-react": "0.55.0",
"calcite-ui-icons-react": "0.5.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.3",
"react-scrollspy": "3.4.3",
"react-virtualized-auto-sizer": "1.0.2",
"react-vis": "1.11.7",
"react-window": "1.8.5",
"styled-components": "5.2.0"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@storybook/addon-actions": "6.0.21",
"@storybook/addon-links": "6.0.21",
"@storybook/addons": "6.0.21",
"@storybook/react": "6.0.21",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"prettier": "^2.1.1",
"serve": "11.3.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}