forked from anmedio/junost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.68 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
113
114
{
"name": "junost",
"version": "1.4.0",
"private": true,
"description": "Junost project - objective grades for the development of digital professionals, proposed and developed by the professional community. Made by ANMEDIO",
"author": {
"name": "Artyom Ivanov",
"url": "https://anmedio.ru"
},
"contributors": [
{
"name": "nikolasmelui",
"email": "[email protected]",
"url": "https://nikolasmelui.beer4.ru/"
}
],
"license": "MIT",
"keywords": [
"react",
"junost",
"grades",
"anmedio",
"digital"
],
"main": "gulpfile.js",
"scripts": {
"gulp:start": "cross-env NODE_ENV=development gulp",
"react:start": "cross-env NODE_ENV=development webpack-dev-server --mode=development --hot --inline --host localhost --port 8080",
"gulp-build:development": "cross-env NODE_ENV=development gulp build",
"react-build:development": "cross-env NODE_ENV=development webpack --mode=development",
"build:development": "npm run gulp-build:development && npm run react-build:development",
"gulp-build:production": "cross-env NODE_ENV=production gulp build",
"react-build:production": "cross-env NODE_ENV=production webpack --mode=production",
"build:production": "npm run gulp-build:production && npm run react-build:production",
"eslint": "./node_modules/.bin/eslint ./src/react/ --ext js,jsx --max-warnings=0",
"eslint:test": "./node_modules/.bin/eslint ./src/react/ --max-warnings=0",
"eslint:fix": "./node_modules/.bin/eslint ./src/react/ --ext js,jsx --fix",
"prettier": "./node_modules/.bin/prettier ./src/react/ --write"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/anmedio/junost.git"
},
"bugs": {
"url": "https://github.com/anmedio/junost/issues"
},
"homepage": "https://gitlab.com/anmedio/junost#readme",
"engines": {
"node": ">=12.6.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"browser-sync": "^2.26.12",
"concurrently": "^4.1.0",
"css-loader": "^2.1.1",
"del": "^4.1.1",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-webpack": "^0.12.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"friendly-errors-webpack-plugin": "^1.7.0",
"gulp": "^4.0.1",
"gulp-autoprefixer": "^6.1.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-imagemin": "^5.0.3",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-pug": "^4.0.1",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"husky": "^4.2.5",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^7.0.0",
"imagemin-svgo": "^7.0.0",
"lint-staged": "^10.2.11",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"react-hot-loader": "^4.8.2",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"bourbon-neat": "^3.0.1",
"cross-env": "^5.2.0",
"promise-polyfill": "^8.1.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"whatwg-fetch": "^3.0.0"
},
"eslint.packageManager": "npm",
"lint-staged": {
"*.(js|jsx)": [
"npm run eslint",
"npm run prettier"
]
}
}