-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
{
"name": "notiflix-documentation",
"version": "1.1.6",
"homepage": "https://notiflix.github.io",
"description": "Notiflix",
"private": true,
"scripts": {
"startup:lint": "eslint src",
"startup:compile": "tsc --resolveJsonModule --outDir .dev --target ES5 src/application/helpers/sitemap-generator/index.ts",
"startup:run": "node .dev/src/application/helpers/sitemap-generator/index.js",
"startup": "yarn startup:lint && yarn startup:compile && yarn startup:run",
"lint:stylelint": "stylelint \"src/**/*.{scss,sass}\" --config .stylelintrc.json",
"lint:eslint": "eslint next.config.js && eslint src && next lint",
"lint": "yarn lint:stylelint && yarn lint:eslint",
"dev": "yarn startup && yarn lint && next dev",
"build": "yarn startup && yarn lint && next build",
"start": "yarn startup && yarn lint && next start",
"deploy": "yarn build && next export -o .dist"
},
"dependencies": {
"next": "12.0.7",
"notiflix": "^3.2.8",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@ts-stack/markdown": "^1.4.0",
"@types/js-yaml": "^4.0.5",
"@types/react": "17.0.37",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.7",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"frontmatter-markdown-loader": "^3.6.3",
"js-yaml": "^4.1.0",
"react-icons": "^4.3.1",
"sass": "^1.45.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.21.0",
"stylelint-webpack-plugin": "^3.1.0",
"typescript": "4.5.3"
},
"browserslist": {
"production": [
"> 1%",
"last 4 versions",
"not ie < 11",
"not dead",
"not op_mini all",
"iOS >=7"
],
"development": [
"IE 11",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}