-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.04 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
{
"name": "news-aggregator",
"version": "0.4.0",
"description": "Web app News Aggregator",
"main": "index.js",
"scripts": {
"dev": "webpack serve --config webpack.dev.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"transpile": "babel ./src --out-dir ./js --source-maps --ignore test.js",
"transpile:all": "babel ./src --out-dir ./js --source-maps",
"css:sass": "node css-sass.js",
"css:min": "node css-min.js",
"build:prod": "webpack --color --progress --config webpack.prod.js",
"stats": "npm run stats:json && npm run stats:report",
"stats:json": "webpack --profile --json > stats.json",
"stats:report": "webpack-bundle-analyzer stats.json ./app --no-open --mode static",
"stats:help": "webpack-bundle-analyzer --help > out.txt"
},
"author": "Yevhenii Molodyi",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/ZhnZhn/news-aggregator.git"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"dompurify": "^3.2.3",
"preact": "^10.25.4"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"babel-loader": "^9.2.1",
"clean-css": "^5.3.3",
"eslint": "^7.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"react-refresh": "^0.14.2",
"sass": "^1.83.1",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"jest": {
"roots": [
"<rootDir>/js/utils"
],
"transformIgnorePatterns": [
"<rootDir>/js/utils"
]
}
}