forked from gordon-cs/gordon-360-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.16 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": "gordon-360-ui",
"version": "0.0.0",
"private": true,
"dependencies": {
"@date-io/date-fns": "^1.3.11",
"@date-io/moment": "^2.0.1",
"@material-ui/core": "^4.8.3",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.42",
"@material-ui/pickers": "^3.2.8",
"caniuse-lite": "^1.0.30001021",
"chart.js": "^2.9.3",
"classnames": ">=2.2.5",
"cropperjs": "^1.5.6",
"date-fns": "^2.6.0",
"downshift": "^4.0.6",
"history": "^4.10.1",
"http-proxy-middleware": "^0.20.0",
"interweave": "^12.1.1",
"jwt-decode": ">=2.2.0",
"lodash": ">=4.17.11",
"luxon": "^1.21.3",
"moment": ">=2.24.0",
"prop-types": ">=15.6.0",
"react": "^16.12.0",
"react-big-calendar": ">=0.21.0",
"react-chartjs-2": ">=2.7.4",
"react-cropper": ">=1.0.1",
"react-document-title": ">=2.0.3",
"react-dom": ">=16.2.0",
"react-dropzone": ">=10.1.5",
"react-ga": ">=2.3.5",
"react-graceful-image": ">=1.2.9",
"react-icons": ">=2.2.7",
"react-image-gallery": "^1.0.5",
"react-media": ">=1.8.0",
"react-responsive-carousel": "^3.1.51",
"react-router": "~5.0.1",
"react-router-dom": "~5.0.1",
"react-timeago": ">=4.4.0",
"typescript": ">=3.5.3",
"url-regex": ">=5.0.0"
},
"devDependencies": {
"eslint-config-react-app": "^5.1.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": ">=5.1.1",
"eslint-plugin-react": "^7.18.0",
"husky": "^4.2.3",
"jasmine-core": "^3.5.0",
"jsdoc": ">=3.6.2",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.1.0",
"karma-safari-launcher": ">=1.0.0",
"lint-staged": "^8.0.0",
"node-sass-chokidar": "^1.4.0",
"npm-run-all": ">=4.1.2",
"prettier": ">=1.9.2",
"react-scripts": "^3.3.0",
"stylelint": ">=10.1.0",
"stylelint-config-recommended-scss": ">=3.0.0",
"stylelint-scss": ">=2.2.0"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch",
"start-js": "react-scripts start",
"start": "npm-run-all --parallel watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"docs": "jsdoc --configure .jsdoc.json --recurse",
"format": "prettier --write '{**/*.md,src/**/*.{js,scss}}'",
"lint": "npm-run-all --parallel --aggregate-output --silent lint-js lint-scss",
"lint-js": "eslint --ext .js src",
"lint-scss": "stylelint 'src/**/*.scss'",
"precommit": "lint-staged"
},
"lint-staged": {
"{**/*.md,src/**/*.{js,scss}}": [
"prettier --write",
"git add"
],
"src/**/*.js": [
"eslint",
"git add"
],
"src/**/*.scss": [
"stylelint",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}