-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.37 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
{
"name": "chronmaps",
"version": "1.0.0",
"description": "Frontend for chron project",
"license": "GPLv3",
"scripts": {
"start": "webpack-dev-server --env.EXT=true --config ./webpack.config.dev.js",
"dev": "webpack-dev-server --config ./webpack.config.dev.js",
"release": "rimraf dist && webpack --config webpack.config.prod.js",
"test": "jest --config ./jest.config.js",
"svg": "node ./src/build/buildPins.js",
"stylelint": "stylelint \"src/**/*.less\"",
"stylelint-fix": "stylelint \"src/**/*.less\" --fix",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/chronhq/frontend.git"
},
"keywords": [
"react",
"reactjs",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack"
],
"author": "Michael Orlov",
"bugs": {
"url": "https://github.com/chronhq/frontend/issues"
},
"homepage": "https://github.com/chronhq/frontend/",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@storybook/react": "^5.3.13",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"jest": "^25.1.0",
"jest-enzyme": "^7.1.2",
"react-hot-loader": "^4.12.19",
"react-test-renderer": "^16.12.0",
"rimraf": "^3.0.2",
"stylelint": "^13.2.0",
"stylelint-config-standard": "^20.0.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"autoprefixer": "^9.7.4",
"axios": "^0.25.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.4",
"css-loader": "^3.4.2",
"file-loader": "^5.0.2",
"firebase": "^9.6.6",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"julian": "^0.2.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mapbox-gl": "^1.7.0",
"mini-css-extract-plugin": "^0.9.0",
"mobx": "^5.15.4",
"mobx-react": "^6.1.8",
"postcss-fail-on-warn": "^0.1.0",
"postcss-flexbugs-fixes": "^4.2.0",
"postcss-loader": "^3.0.0",
"promise-polyfill": "^8.1.3",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-firebaseui": "^6.0.0",
"react-ga": "^2.7.0",
"react-hotkeys": "^2.0.0",
"react-map-gl": "^5.2.3",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-select": "^3.0.8",
"react-smooth-collapse": "^2.1.0",
"react-yandex-metrika": "^2.6.0",
"style-loader": "^1.1.3",
"url-loader": "^3.0.0",
"use-onclickoutside": "^0.3.1",
"webpack": "^4.41.6",
"webpack-bundle-analyzer": "^3.6.0"
}
}