This repository has been archived by the owner on Dec 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.33 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
{
"name": "web_severka_32.github.io",
"version": "1.0.0",
"description": "Stránky pionýrského oddílu 32. PTO Severka",
"main": "app.js",
"scripts": {
"clear-build-cache": "rm -rf .cache/ dist/ build/",
"remove-node-modules": "rm -rf node_modules",
"dev": "parcel src/index.html",
"build": "parcel build src/index.html -d build",
"format": "prettier \"src/**/*.{js,html}\" --write",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"scss": "node-sass --output-style compressed -o dist/css src/scss",
"autoprefixer": "postcss dist/css/main.css -u autoprefixer -r dist/css/main.css",
"imagemin": "imagemin src/images --out-dir=dist/images",
"build:css": "npm run scss && npm run autoprefixer",
"watch:css": "onchange \"src/scss/*.scss\" -- npm run build:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DohnalMichal/web_severka_32.github.io.git"
},
"keywords": [
"Severka",
"Pionýr",
"32.",
"PTO"
],
"author": "Michal Dohnal",
"license": "ISC",
"bugs": {
"url": "https://github.com/DohnalMichal/web_severka_32.github.io/issues"
},
"homepage": "https://github.com/DohnalMichal/web_severka_32.github.io#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-react": "^7.13.13",
"autoprefixer": "^10.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"imagemin-cli": "^6.0.0",
"node-sass": "^7.0.0",
"onchange": "^7.1.0",
"parcel-bundler": "^1.12.4",
"postcss": "^8.2.10",
"postcss-cli": "^8.2.0",
"prettier": "^2.2.1",
"sass": "^1.34.1"
},
"dependencies": {
"moment": "^2.29.4",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"react-markdown": "^5.0.3",
"react-moment": "^1.1.1",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.1",
"stylish-sidebar": "^1.1.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}